Skip to content

Instantly share code, notes, and snippets.

@NattyNarwhal
Created March 6, 2018 00:22
Show Gist options
  • Save NattyNarwhal/e0c8f6c10162d316d05610bdbe7eb284 to your computer and use it in GitHub Desktop.
Save NattyNarwhal/e0c8f6c10162d316d05610bdbe7eb284 to your computer and use it in GitHub Desktop.
another broken trampoline
diff --git a/mono/mini/mini-ppc.c b/mono/mini/mini-ppc.c
index 8a32046..5cfca95 100644
--- a/mono/mini/mini-ppc.c
+++ b/mono/mini/mini-ppc.c
@@ -800,6 +800,7 @@ mono_arch_flush_icache (guint8 *code, gint size)
if (!(cpu_hw_caps & PPC_ISA_2X))
asm ("sync");
asm ("isync");
+ __builtin___clear_cache (start, endp);
#endif
#endif
}
diff --git a/mono/mini/tramp-ppc.c b/mono/mini/tramp-ppc.c
index bfbeca9..880b517 100644
--- a/mono/mini/tramp-ppc.c
+++ b/mono/mini/tramp-ppc.c
@@ -241,10 +241,10 @@ guchar*
mono_arch_create_generic_trampoline (MonoTrampolineType tramp_type, MonoTrampInfo **info, gboolean aot)
{
char *tramp_name;
- guint8 *buf, *code = NULL;
+ guint8 *buf, *code = NULL, *exception_branch;
int i, offset;
gconstpointer tramp_handler;
- int size = MONO_PPC_32_64_CASE (600, 800);
+ int size = MONO_PPC_32_64_CASE (700, 900);
GSList *unwind_ops = NULL;
MonoJumpInfo *ji = NULL;
@@ -365,16 +365,15 @@ mono_arch_create_generic_trampoline (MonoTrampolineType tramp_type, MonoTrampInf
ppc_blrl (code);
}
- /* OK, code address is now on r3. Move it to the counter reg
- * so it will be ready for the final jump: this is safe since we
- * won't do any more calls.
+ /* OK, code address is now on r3. Move it to r14 because we need
+ * to still do exception checks.
*/
if (!MONO_TRAMPOLINE_TYPE_MUST_RETURN (tramp_type)) {
#ifdef PPC_USES_FUNCTION_DESCRIPTOR
ppc_ldptr (code, ppc_r2, sizeof (gpointer), ppc_r3);
ppc_ldptr (code, ppc_r3, 0, ppc_r3);
#endif
- ppc_mtctr (code, ppc_r3);
+ ppc_mr (code, ppc_r14, ppc_r3);
}
/*
@@ -390,6 +389,47 @@ mono_arch_create_generic_trampoline (MonoTrampolineType tramp_type, MonoTrampInf
ppc_ldptr (code, ppc_r6, G_STRUCT_OFFSET(MonoLMF, lmf_addr), ppc_r12);
/* *(lmf_addr) = previous_lmf */
ppc_stptr (code, ppc_r5, G_STRUCT_OFFSET(MonoLMF, previous_lmf), ppc_r6);
+
+ /* thread interruption check */
+ if (aot) {
+ g_error ("Not implemented");
+ } else {
+ gconstpointer checkpoint = mono_thread_force_interruption_checkpoint_noraise;
+ ppc_load_func (code, PPC_CALL_REG, checkpoint);
+ ppc_mtlr (code, PPC_CALL_REG);
+ }
+ ppc_blrl (code);
+
+ ppc_compare_reg_imm (code, 0, ppc_r3, 0); // is there an exception?
+ exception_branch = code;
+ //ppc_break (code); // will be rewritten
+ ppc_bc (code, PPC_BR_TRUE, PPC_BR_EQ, 0);
+
+ /* exception */
+ ppc_ldr (code, ppc_r1, 0, ppc_r1);
+ ppc_ldr (code, ppc_r12, PPC_RET_ADDR_OFFSET, ppc_r1);
+ ppc_mtlr (code, ppc_r12);
+
+ if (aot) {
+ g_error ("Not implemented");
+ } else {
+ gconstpointer throw = mono_get_throw_exception_addr ();
+ ppc_load_func (code, PPC_CALL_REG, throw);
+ ppc_ldr (code, PPC_CALL_REG, 0, PPC_CALL_REG);
+ ppc_mtctr (code, PPC_CALL_REG);
+ }
+ ppc_bcctr (code, 20, 0);
+
+ ppc_break (code); //never reach, inject branch replacement above?
+
+ /* rewrite the trap above to a branch */
+ //ppc_bc (exception_branch, PPC_BR_FALSE, PPC_BR_EQ, (code - exception_branch));
+ ppc_patch (exception_branch, code);
+
+ /* no exception, move r14 to ctr and carry on */
+ ppc_mtctr (code, ppc_r14);
+ ppc_addi (code, ppc_r12, ppc_r1, STACK - sizeof (MonoLMF));
+
/* restore iregs */
ppc_ldr_multiple (code, ppc_r13, G_STRUCT_OFFSET(MonoLMF, iregs), ppc_r12);
/* restore fregs */
gmake[2]: Entering directory '/opt/monodev/mono/runtime'
if test -w /opt/monodev/mono/mcs; then :; else chmod -R +w /opt/monodev/mono/mcs; fi
cd /opt/monodev/mono/mcs && gmake --no-print-directory -s NO_DIR_CHECK=1 PROFILES='binary_reference_assemblies net_4_x xbuild_12 xbuild_14 ' CC='gcc' all-profiles
gmake[6]: mcs: Command not found
gmake[6]: *** [build/profiles/basic.make:116: build/deps/basic-profile-check.exe] Error 127
*** The runtime 'mono' doesn't appear to be usable.
*** Trying the 'monolite-linux/1051300002' directory.
mono_thread_internal_set_priority: pthread_setschedparam failed, error: "Operation not permitted." (1)
Stacktrace:
at <unknown> <0xffffffff>
at (wrapper managed-to-native) object.__icall_wrapper_mono_generic_class_init (intptr) <0x000f4>
at Mono.CSharp.Driver.Main (string[]) [0x00014] in <79007c958ab94de6a09a5357a2bcc6ce>:0
at (wrapper runtime-invoke) <Module>.runtime_invoke_int_object (object,intptr,intptr,intptr) [0x00054] in <79007c958ab94de6a09a5357a2bcc6ce>:0
=================================================================
Got a SIGSEGV while executing native code. This usually indicates
a fatal error in the mono runtime or one of the native libraries
used by your application.
=================================================================
gmake[8]: *** [build/profiles/basic.make:116: build/deps/basic-profile-check.exe] IOT/Abort trap (core dumped)
*** The contents of your 'monolite-linux/1051300002' directory may be out-of-date
*** You may want to try 'make get-monolite-latest'
gmake[8]: *** [build/profiles/basic.make:98: do-profile-check-monolite] Error 1
gmake[7]: *** [build/profiles/basic.make:74: do-profile-check] Error 2
gmake[6]: *** [build/profiles/basic.make:110: do-profile-check-monolite] Error 2
gmake[5]: *** [build/profiles/basic.make:74: do-profile-check] Error 2
gmake[4]: *** [Makefile:54: profile-do--basic--all] Error 2
gmake[3]: *** [Makefile:50: profiles-do--all] Error 2
gmake[2]: *** [Makefile:613: all-local] Error 2
gmake[2]: Leaving directory '/opt/monodev/mono/runtime'
gmake[1]: *** [Makefile:558: all-recursive] Error 1
gmake[1]: Leaving directory '/opt/monodev/mono'
gmake: *** [Makefile:488: all] Error 2
$ (reverse-i-search)`exce': LIBPATH=mono/mini/.libs/ mono/mini/mono-sgen --trace=all -v ~/exception.exe
converting method void System.OutOfMemoryException:.ctor (string)
Method void System.OutOfMemoryException:.ctor (string) emitted at 700000000083600 to 7000000000836ec (code length 236) [exception.exe]
converting method (wrapper runtime-invoke) object <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr) emitted at 700000000083780 to 7000000000839f0 (code length 624) [exception.exe]
[1: 0.00000 0] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.00010 1] ENTER: System.OutOfMemoryException:.ctor (string)() ip: 700000000083934
converting method void System.SystemException:.ctor (string)
Method void System.SystemException:.ctor (string) emitted at 7000000000839f0 to 700000000083adc (code length 236) [exception.exe]
[1: 0.00051 2] ENTER: System.SystemException:.ctor (string)() ip: 700000000083678
converting method void System.Exception:.ctor (string)
Method void System.Exception:.ctor (string) emitted at 700000000083b10 to 700000000083c48 (code length 312) [exception.exe]
converting method void System.Exception:.cctor ()
Method void System.Exception:.cctor () emitted at 700000000083c78 to 700000000083d50 (code length 216) [exception.exe]
converting method (wrapper runtime-invoke) object object:runtime_invoke_void (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object object:runtime_invoke_void (object,intptr,intptr,intptr) emitted at 700000000083d80 to 700000000083fd8 (code length 600) [exception.exe]
[1: 0.00170 3] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.00179 4] ENTER: System.Exception:.cctor ()() ip: 700000000083e8c
converting method (wrapper alloc) object object:AllocSmall (intptr,intptr)
Method (wrapper alloc) object object:AllocSmall (intptr,intptr) emitted at 700000000084008 to 7000000000841dc (code length 468) [exception.exe]
[1: 0.00224 5] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000083cf4
[1: 0.00240 5] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Object:7000000004000f0]
[1: 0.00250 4] LEAVE: System.Exception:.cctor ()
[1: 0.00258 3] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.00268 3] ENTER: System.Exception:.ctor (string)() ip: 700000000083a68
converting method void System.Exception:Init ()
Method void System.Exception:Init () emitted at 7000000000841e0 to 700000000084364 (code length 388) [exception.exe]
[1: 0.00320 4] ENTER: System.Exception:Init ()() ip: 700000000083b88
[1: 0.00329 5] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.00338 5] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000400100]
[1: 0.00350 4] LEAVE: System.Exception:Init ()
[1: 0.00360 3] LEAVE: System.Exception:.ctor (string)
converting method void System.Exception:SetErrorCode (int)
Method void System.Exception:SetErrorCode (int) emitted at 700000000084368 to 70000000008443c (code length 212) [exception.exe]
[1: 0.00397 3] ENTER: System.Exception:SetErrorCode (int)() ip: 700000000083a98
[1: 0.00406 3] LEAVE: System.Exception:SetErrorCode (int)
[1: 0.00415 2] LEAVE: System.SystemException:.ctor (string)
[1: 0.00424 2] ENTER: System.Exception:SetErrorCode (int)() ip: 7000000000836a8
[1: 0.00433 2] LEAVE: System.Exception:SetErrorCode (int)
[1: 0.00442 1] LEAVE: System.OutOfMemoryException:.ctor (string)
[1: 0.00451 0] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)[OBJECT:0]
converting method void System.NullReferenceException:.ctor (string)
Method void System.NullReferenceException:.ctor (string) emitted at 700000000084440 to 700000000084548 (code length 264) [exception.exe]
[1: 0.00499 0] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.00508 1] ENTER: System.NullReferenceException:.ctor (string)() ip: 700000000083934
[1: 0.00517 2] ENTER: System.SystemException:.ctor (string)() ip: 7000000000844bc
[1: 0.00526 3] ENTER: System.Exception:.ctor (string)() ip: 700000000083a68
[1: 0.00535 4] ENTER: System.Exception:Init ()() ip: 700000000083b88
[1: 0.00543 5] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.00553 5] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000400250]
[1: 0.00562 4] LEAVE: System.Exception:Init ()
[1: 0.00571 3] LEAVE: System.Exception:.ctor (string)
[1: 0.00580 3] ENTER: System.Exception:SetErrorCode (int)() ip: 700000000083a98
[1: 0.00588 3] LEAVE: System.Exception:SetErrorCode (int)
[1: 0.00597 2] LEAVE: System.SystemException:.ctor (string)
[1: 0.00606 1] LEAVE: System.NullReferenceException:.ctor (string)
[1: 0.00615 0] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)[OBJECT:0]
converting method void System.StackOverflowException:.ctor (string)
Method void System.StackOverflowException:.ctor (string) emitted at 700000000084548 to 700000000084650 (code length 264) [exception.exe]
[1: 0.00662 0] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.00671 1] ENTER: System.StackOverflowException:.ctor (string)() ip: 700000000083934
[1: 0.00681 2] ENTER: System.SystemException:.ctor (string)() ip: 7000000000845c4
[1: 0.00689 3] ENTER: System.Exception:.ctor (string)() ip: 700000000083a68
[1: 0.00698 4] ENTER: System.Exception:Init ()() ip: 700000000083b88
[1: 0.00706 5] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.00714 5] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000400388]
[1: 0.00722 4] LEAVE: System.Exception:Init ()
[1: 0.00730 3] LEAVE: System.Exception:.ctor (string)
[1: 0.00738 3] ENTER: System.Exception:SetErrorCode (int)() ip: 700000000083a98
[1: 0.00746 3] LEAVE: System.Exception:SetErrorCode (int)
[1: 0.00753 2] LEAVE: System.SystemException:.ctor (string)
[1: 0.00761 1] LEAVE: System.StackOverflowException:.ctor (string)
[1: 0.00769 0] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)[OBJECT:0]
mono_thread_internal_set_priority: pthread_setschedparam failed, error: "Operation not permitted." (1)
converting method void Entry:Main ()
Method void Entry:Main () emitted at 700000000084650 to 7000000000846fc (code length 172) [exception.exe]
converting method (wrapper runtime-invoke) object object:runtime_invoke_void (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object object:runtime_invoke_void (object,intptr,intptr,intptr) emitted at 700000000084730 to 700000000084988 (code length 600) [exception.exe]
[1: 0.01255 0] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.01257 1] ENTER: Entry:Main ()() ip: 7000000000848cc
converting method void Offending:Hello ()
Method void Offending:Hello () emitted at 7000000000849b8 to 700000000084ac4 (code length 268) [exception.exe]
converting method void Offending:.cctor ()
Method void Offending:.cctor () emitted at 700000000084b28 to 700000000084c40 (code length 280) [exception.exe]
[1: 0.01299 2] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.01302 3] ENTER: Offending:.cctor ()() ip: 70000000008483c
converting method (wrapper managed-to-native) object object:__icall_wrapper_mono_helper_ldstr (intptr,intptr)
Method (wrapper managed-to-native) object object:__icall_wrapper_mono_helper_ldstr (intptr,intptr) emitted at 700000000084c70 to 700000000084f20 (code length 688) [exception.exe]
[1: 0.01323 4] ENTER: (wrapper managed-to-native) object:__icall_wrapper_mono_helper_ldstr (intptr,intptr)() ip: 700000000084ba4
[1: 0.01332 4] LEAVE: (wrapper managed-to-native) object:__icall_wrapper_mono_helper_ldstr (intptr,intptr)[System.String:7000000000ec130]
[1: 0.01339 4] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.01341 5] ENTER: System.Exception:.ctor (string)() ip: 700000000083934
[1: 0.01343 6] ENTER: System.Exception:Init ()() ip: 700000000083b88
[1: 0.01345 7] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.01346 7] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000400540]
[1: 0.01348 6] LEAVE: System.Exception:Init ()
[1: 0.01351 5] LEAVE: System.Exception:.ctor (string)
[1: 0.01352 4] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object (object,intptr,intptr,intptr)[OBJECT:0]
converting method string System.Exception:get_Message ()
Method string System.Exception:get_Message () emitted at 700000000084f20 to 70000000008513c (code length 540) [exception.exe]
converting method (wrapper runtime-invoke) object <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr) emitted at 7000000000851d0 to 700000000085438 (code length 616) [exception.exe]
[1: 0.01490 4] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.01491 5] ENTER: System.Exception:get_Message ()() ip: 7000000000852e0
[1: 0.01493 5] LEAVE: System.Exception:get_Message ()[System.String:7000000000ec130]
[1: 0.01495 4] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[System.String:7000000000ec130]
[1:] EXCEPTION handling: System.Exception: Broken
EXCEPTION: catch found at clause 0 of (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
[1: 0.01507 3] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
converting method void System.TypeInitializationException:.ctor (string,System.Exception)
Method void System.TypeInitializationException:.ctor (string,System.Exception) emitted at 700000000085438 to 700000000085634 (code length 508) [exception.exe]
converting method (wrapper runtime-invoke) object <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr) emitted at 700000000085668 to 7000000000858e0 (code length 632) [exception.exe]
[1: 0.01569 3] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.01571 4] ENTER: System.TypeInitializationException:.ctor (string,System.Exception)() ip: 700000000085820
converting method (wrapper alloc) object object:AllocVector (intptr,intptr)
Method (wrapper alloc) object object:AllocVector (intptr,intptr) emitted at 700000000085910 to 700000000085cbc (code length 940) [exception.exe]
[1: 0.01601 5] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 7000000000854c8
[1: 0.01603 5] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Object[]:700000000400748]
converting method (wrapper stelemref) void object:virt_stelemref_object (intptr,object)
Method (wrapper stelemref) void object:virt_stelemref_object (intptr,object) emitted at 700000000085cc0 to 700000000085e24 (code length 356) [exception.exe]
[1: 0.01619 5] ENTER: (wrapper stelemref) object:virt_stelemref_object (intptr,object)() ip: 7000000000854f4
[1: 0.01621 5] LEAVE: (wrapper stelemref) object:virt_stelemref_object (intptr,object)
converting method string System.Environment:GetResourceString (string,object[])
Method string System.Environment:GetResourceString (string,object[]) emitted at 700000000085e28 to 700000000085f14 (code length 236) [exception.exe]
[1: 0.01639 5] ENTER: System.Environment:GetResourceString (string,object[])() ip: 700000000085530
converting method System.Globalization.CultureInfo System.Globalization.CultureInfo:get_InvariantCulture ()
converting method void System.Globalization.CultureInfo:.cctor ()
Method void System.Globalization.CultureInfo:.cctor () emitted at 700000000085f78 to 7000000000860d8 (code length 352) [exception.exe]
[1: 0.01676 6] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.01678 7] ENTER: System.Globalization.CultureInfo:.cctor ()() ip: 700000000083e8c
[1: 0.01680 8] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000085ff4
[1: 0.01682 8] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Globalization.CultureInfo:700000000400770]
converting method void System.Globalization.CultureInfo:.ctor (int,bool,bool)
Method void System.Globalization.CultureInfo:.ctor (int,bool,bool) emitted at 700000000086138 to 7000000000867b0 (code length 1656) [exception.exe]
[1: 0.01986 8] ENTER: System.Globalization.CultureInfo:.ctor (int,bool,bool)() ip: 700000000086028
converting method System.Globalization.CultureData System.Globalization.CultureData:get_Invariant ()
Method System.Globalization.CultureData System.Globalization.CultureData:get_Invariant () emitted at 700000000086990 to 700000000087248 (code length 2232) [exception.exe]
[1: 0.02100 9] ENTER: System.Globalization.CultureData:get_Invariant ()() ip: 700000000086234
[1: 0.02108 10] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000086a4c
[1: 0.02117 10] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Globalization.CultureData:700000000400988]
[1: 0.02125 10] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000086c88
[1: 0.02133 10] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000400a10]
converting method (wrapper stelemref) void object:virt_stelemref_sealed_class (intptr,object)
Method (wrapper stelemref) void object:virt_stelemref_sealed_class (intptr,object) emitted at 700000000087248 to 70000000008743c (code length 500) [exception.exe]
[1: 0.02174 10] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000086cc4
[1: 0.02182 10] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02191 10] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000086d4c
[1: 0.02199 10] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000400a38]
[1: 0.02207 10] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000086d88
[1: 0.02215 10] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02223 10] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000086dc8
[1: 0.02231 10] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02239 10] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000086e08
[1: 0.02247 10] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02255 10] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000086e48
[1: 0.02263 10] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02271 10] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000086eec
[1: 0.02279 10] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Int32[]:700000000400a78]
[1: 0.02288 10] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000086f98
[1: 0.02296 10] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Globalization.CalendarData[]:700000000400aa0]
converting method (wrapper managed-to-native) void object:__icall_wrapper_mono_generic_class_init (intptr)
Method (wrapper managed-to-native) void object:__icall_wrapper_mono_generic_class_init (intptr) emitted at 700000000087440 to 7000000000876d4 (code length 660) [exception.exe]
[1: 0.02331 10] ENTER: (wrapper managed-to-native) object:__icall_wrapper_mono_generic_class_init (intptr)() ip: 700000000087034
converting method void System.Globalization.CalendarData:.cctor ()
Method void System.Globalization.CalendarData:.cctor () emitted at 7000000000876d8 to 700000000088d04 (code length 5676) [exception.exe]
[1: 0.02490 11] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.02499 12] ENTER: System.Globalization.CalendarData:.cctor ()() ip: 700000000083e8c
[1: 0.02507 13] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000087754
[1: 0.02515 13] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Globalization.CalendarData:700000000402338]
converting method void System.Globalization.CalendarData:.ctor ()
Method void System.Globalization.CalendarData:.ctor () emitted at 700000000088d38 to 700000000088e08 (code length 208) [exception.exe]
[1: 0.02549 13] ENTER: System.Globalization.CalendarData:.ctor ()() ip: 70000000008777c
[1: 0.02557 13] LEAVE: System.Globalization.CalendarData:.ctor ()
[1: 0.02565 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087848
[1: 0.02573 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:7000000004023d8]
[1: 0.02581 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087884
[1: 0.02589 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02597 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000878c4
[1: 0.02605 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02613 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087948
[1: 0.02621 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402408]
[1: 0.02629 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087984
[1: 0.02637 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02652 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087a08
[1: 0.02660 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402430]
[1: 0.02668 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087a44
[1: 0.02676 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02684 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087b34
[1: 0.02692 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402458]
[1: 0.02700 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087b70
[1: 0.02708 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02717 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087bf4
[1: 0.02725 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402480]
[1: 0.02733 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087c30
[1: 0.02741 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02749 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087cb4
[1: 0.02757 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:7000000004024a8]
[1: 0.02765 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087cf0
[1: 0.02773 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02782 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087d74
[1: 0.02790 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:7000000004024d0]
[1: 0.02798 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087db0
[1: 0.02806 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02814 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087df0
[1: 0.02822 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02830 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087e30
[1: 0.02838 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02846 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087e70
[1: 0.02854 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02862 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087eb0
[1: 0.02870 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02878 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087ef0
[1: 0.02886 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02894 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087f30
[1: 0.02902 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02910 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000087fb4
[1: 0.02918 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402528]
[1: 0.02927 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000087ff0
[1: 0.02934 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02943 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088030
[1: 0.02950 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02958 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088070
[1: 0.02966 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02975 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000880b0
[1: 0.02982 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.02990 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000880f0
[1: 0.02998 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03006 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088130
[1: 0.03014 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03022 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088170
[1: 0.03030 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03038 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 7000000000881f4
[1: 0.03046 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402580]
[1: 0.03055 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088230
[1: 0.03062 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03070 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088270
[1: 0.03079 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03087 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000882b0
[1: 0.03095 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03103 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000882f0
[1: 0.03111 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03119 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088330
[1: 0.03127 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03135 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088370
[1: 0.03143 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03151 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000883b0
[1: 0.03159 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03167 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000088434
[1: 0.03182 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:7000000004025d8]
[1: 0.03190 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088470
[1: 0.03198 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03206 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000884b0
[1: 0.03214 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03222 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000884f0
[1: 0.03230 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03238 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088530
[1: 0.03246 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03254 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088570
[1: 0.03262 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03270 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000885b0
[1: 0.03278 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03286 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000885f0
[1: 0.03294 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03302 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088630
[1: 0.03310 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03318 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088670
[1: 0.03326 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03333 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000886b0
[1: 0.03342 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03350 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000886f0
[1: 0.03358 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03366 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088730
[1: 0.03374 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03382 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088770
[1: 0.03390 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03398 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 7000000000887f4
[1: 0.03406 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402660]
[1: 0.03414 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088830
[1: 0.03422 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03430 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088870
[1: 0.03438 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03446 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000888b0
[1: 0.03454 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03462 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000888f0
[1: 0.03470 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03478 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088930
[1: 0.03486 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03494 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088970
[1: 0.03502 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03510 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000889b0
[1: 0.03518 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03526 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 7000000000889f0
[1: 0.03534 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03542 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088a30
[1: 0.03550 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03558 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088a70
[1: 0.03566 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03574 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088ab0
[1: 0.03582 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03590 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088af0
[1: 0.03598 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03605 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 700000000088b30
[1: 0.03613 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.03621 12] LEAVE: System.Globalization.CalendarData:.cctor ()
[1: 0.03630 11] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.03638 10] LEAVE: (wrapper managed-to-native) object:__icall_wrapper_mono_generic_class_init (intptr)
converting method (wrapper stelemref) void object:virt_stelemref_class_small_idepth (intptr,object)
Method (wrapper stelemref) void object:virt_stelemref_class_small_idepth (intptr,object) emitted at 700000000088e08 to 70000000008901c (code length 532) [exception.exe]
[1: 0.03715 10] ENTER: (wrapper stelemref) object:virt_stelemref_class_small_idepth (intptr,object)() ip: 700000000087068
[1: 0.03723 10] LEAVE: (wrapper stelemref) object:virt_stelemref_class_small_idepth (intptr,object)
[1: 0.03733 9] LEAVE: System.Globalization.CultureData:get_Invariant ()[System.Globalization.CultureData:700000000400988]
converting method void System.Globalization.CultureInfo:ConstructInvariant (bool)
Method void System.Globalization.CultureInfo:ConstructInvariant (bool) emitted at 700000000089020 to 700000000089564 (code length 1348) [exception.exe]
[1: 0.03793 9] ENTER: System.Globalization.CultureInfo:ConstructInvariant (bool)() ip: 7000000000862a4
converting method System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo:get_InvariantInfo ()
Method System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo:get_InvariantInfo () emitted at 7000000000895f8 to 7000000000897b4 (code length 444) [exception.exe]
[1: 0.03846 10] ENTER: System.Globalization.NumberFormatInfo:get_InvariantInfo ()() ip: 7000000000890a8
[1: 0.03854 11] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000089694
[1: 0.03862 11] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Globalization.NumberFormatInfo:7000000004027b0]
converting method void System.Globalization.NumberFormatInfo:.ctor ()
Method void System.Globalization.NumberFormatInfo:.ctor () emitted at 700000000089818 to 7000000000898d0 (code length 184) [exception.exe]
[1: 0.03898 11] ENTER: System.Globalization.NumberFormatInfo:.ctor ()() ip: 7000000000896bc
converting method void System.Globalization.NumberFormatInfo:.ctor (System.Globalization.CultureData)
Method void System.Globalization.NumberFormatInfo:.ctor (System.Globalization.CultureData) emitted at 700000000089900 to 70000000008a5f0 (code length 3312) [exception.exe]
[1: 0.03988 12] ENTER: System.Globalization.NumberFormatInfo:.ctor (System.Globalization.CultureData)() ip: 70000000008988c
[1: 0.03996 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000089990
[1: 0.04004 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Int32[]:700000000402af0]
[1: 0.04013 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000089a38
[1: 0.04021 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Int32[]:700000000402b18]
[1: 0.04030 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000089ae0
[1: 0.04038 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Int32[]:700000000402b40]
[1: 0.04046 13] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000008a170
[1: 0.04054 13] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000402b68]
[1: 0.04062 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a1ac
[1: 0.04070 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04079 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a1ec
[1: 0.04087 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04096 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a22c
[1: 0.04104 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04113 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a26c
[1: 0.04121 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04129 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a2ac
[1: 0.04137 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04145 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a2ec
[1: 0.04153 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04161 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a32c
[1: 0.04169 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04177 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a36c
[1: 0.04185 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04193 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a3ac
[1: 0.04201 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04209 13] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000008a3ec
[1: 0.04217 13] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.04225 12] LEAVE: System.Globalization.NumberFormatInfo:.ctor (System.Globalization.CultureData)
[1: 0.04233 11] LEAVE: System.Globalization.NumberFormatInfo:.ctor ()
converting method System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo:ReadOnly (System.Globalization.NumberFormatInfo)
Method System.Globalization.NumberFormatInfo System.Globalization.NumberFormatInfo:ReadOnly (System.Globalization.NumberFormatInfo) emitted at 70000000008a620 to 70000000008a858 (code length 568) [exception.exe]
[1: 0.04309 11] ENTER: System.Globalization.NumberFormatInfo:ReadOnly (System.Globalization.NumberFormatInfo)() ip: 700000000089700
converting method (wrapper remoting-invoke-with-check) object object:MemberwiseClone ()
Method (wrapper remoting-invoke-with-check) object object:MemberwiseClone () emitted at 70000000008a888 to 70000000008a9ec (code length 356) [exception.exe]
[1: 0.04347 12] ENTER: (wrapper remoting-invoke-with-check) object:MemberwiseClone ()() ip: 70000000008a6d0
converting method (wrapper managed-to-native) object object:MemberwiseClone (object)
Method (wrapper managed-to-native) object object:MemberwiseClone (object) emitted at 70000000008aa80 to 70000000008ad88 (code length 776) [exception.exe]
[1: 0.04385 13] ENTER: (wrapper managed-to-native) object:MemberwiseClone (object)() ip: 70000000008a994
[1: 0.04394 13] LEAVE: (wrapper managed-to-native) object:MemberwiseClone (object)[System.Globalization.NumberFormatInfo:700000000402bd8]
[1: 0.04403 12] LEAVE: (wrapper remoting-invoke-with-check) object:MemberwiseClone ()[System.Globalization.NumberFormatInfo:700000000402bd8]
[1: 0.04411 11] LEAVE: System.Globalization.NumberFormatInfo:ReadOnly (System.Globalization.NumberFormatInfo)[System.Globalization.NumberFormatInfo:700000000402bd8]
[1: 0.04420 10] LEAVE: System.Globalization.NumberFormatInfo:get_InvariantInfo ()[System.Globalization.NumberFormatInfo:700000000402bd8]
converting method System.Globalization.TextInfo System.Globalization.TextInfo:get_Invariant ()
Method System.Globalization.TextInfo System.Globalization.TextInfo:get_Invariant () emitted at 70000000008ad88 to 70000000008aef4 (code length 364) [exception.exe]
[1: 0.04462 10] ENTER: System.Globalization.TextInfo:get_Invariant ()() ip: 7000000000891d8
[1: 0.04471 11] ENTER: System.Globalization.CultureData:get_Invariant ()() ip: 70000000008ae0c
[1: 0.04479 11] LEAVE: System.Globalization.CultureData:get_Invariant ()[System.Globalization.CultureData:700000000400988]
[1: 0.04487 11] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000008ae48
[1: 0.04495 11] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Globalization.TextInfo:700000000402cb0]
converting method void System.Globalization.TextInfo:.ctor (System.Globalization.CultureData)
Method void System.Globalization.TextInfo:.ctor (System.Globalization.CultureData) emitted at 70000000008af28 to 70000000008b108 (code length 480) [exception.exe]
[1: 0.04538 11] ENTER: System.Globalization.TextInfo:.ctor (System.Globalization.CultureData)() ip: 70000000008ae74
[1: 0.04546 11] LEAVE: System.Globalization.TextInfo:.ctor (System.Globalization.CultureData)
[1: 0.04555 10] LEAVE: System.Globalization.TextInfo:get_Invariant ()[System.Globalization.TextInfo:700000000402cb0]
[1: 0.04563 9] LEAVE: System.Globalization.CultureInfo:ConstructInvariant (bool)
[1: 0.04571 8] LEAVE: System.Globalization.CultureInfo:.ctor (int,bool,bool)
[1: 0.04579 8] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000008607c
[1: 0.04587 8] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Object:700000000402cf8]
[1: 0.04595 7] LEAVE: System.Globalization.CultureInfo:.cctor ()
[1: 0.04603 6] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
Method System.Globalization.CultureInfo System.Globalization.CultureInfo:get_InvariantCulture () emitted at 70000000008b108 to 70000000008b1b0 (code length 168) [exception.exe]
[1: 0.04626 6] ENTER: System.Globalization.CultureInfo:get_InvariantCulture ()() ip: 700000000085e98
[1: 0.04634 6] LEAVE: System.Globalization.CultureInfo:get_InvariantCulture ()[System.Globalization.CultureInfo:700000000400770]
converting method string string:Format (System.IFormatProvider,string,object[])
Method string string:Format (System.IFormatProvider,string,object[]) emitted at 70000000008b1b0 to 70000000008b390 (code length 480) [exception.exe]
[1: 0.04684 6] ENTER: string:Format (System.IFormatProvider,string,object[])() ip: 700000000085ec4
converting method void System.ParamsArray:.ctor (object[])
Method void System.ParamsArray:.ctor (object[]) emitted at 70000000008b3f0 to 70000000008b6d0 (code length 736) [exception.exe]
converting method void System.ParamsArray:.cctor ()
Method void System.ParamsArray:.cctor () emitted at 70000000008b6d0 to 70000000008b848 (code length 376) [exception.exe]
[1: 0.04756 7] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.04764 8] ENTER: System.ParamsArray:.cctor ()() ip: 700000000083e8c
[1: 0.04772 9] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000008b74c
[1: 0.04780 9] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Object[]:700000000402d50]
[1: 0.04789 9] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000008b79c
[1: 0.04797 9] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Object[]:700000000402d78]
[1: 0.04805 9] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000008b7ec
[1: 0.04813 9] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Object[]:700000000402da8]
[1: 0.04821 8] LEAVE: System.ParamsArray:.cctor ()
[1: 0.04829 7] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.04838 7] ENTER: System.ParamsArray:.ctor (object[])() ip: 70000000008b2e0
[1: 0.04846 7] LEAVE: System.ParamsArray:.ctor (object[])
converting method string string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)
Method string string:FormatHelper (System.IFormatProvider,string,System.ParamsArray) emitted at 70000000008b848 to 70000000008ba9c (code length 596) [exception.exe]
[1: 0.04899 7] ENTER: string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)() ip: 70000000008b33c
converting method System.Text.StringBuilder System.Text.StringBuilderCache:Acquire (int)
Method System.Text.StringBuilder System.Text.StringBuilderCache:Acquire (int) emitted at 70000000008bb30 to 70000000008bd60 (code length 560) [exception.exe]
[1: 0.04954 8] ENTER: System.Text.StringBuilderCache:Acquire (int)() ip: 70000000008b904
[1: 0.04962 9] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000008bca8
[1: 0.04970 9] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Text.StringBuilder:700000000402de0]
converting method void System.Text.StringBuilder:.ctor (int)
Method void System.Text.StringBuilder:.ctor (int) emitted at 70000000008bdc0 to 70000000008be90 (code length 208) [exception.exe]
[1: 0.05004 9] ENTER: System.Text.StringBuilder:.ctor (int)() ip: 70000000008bcd4
converting method void System.Text.StringBuilder:.ctor (string,int)
Method void System.Text.StringBuilder:.ctor (string,int) emitted at 70000000008bec0 to 70000000008bffc (code length 316) [exception.exe]
[1: 0.05046 10] ENTER: System.Text.StringBuilder:.ctor (string,int)() ip: 70000000008be4c
converting method void System.Text.StringBuilder:.ctor (string,int,int,int)
Method void System.Text.StringBuilder:.ctor (string,int,int,int) emitted at 700000000111030 to 7000000001116dc (code length 1708) [exception.exe]
[1: 0.05133 11] ENTER: System.Text.StringBuilder:.ctor (string,int,int,int)() ip: 70000000008bf7c
[1: 0.05141 12] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000111158
[1: 0.05149 12] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Char[]:700000000402e10]
converting method void System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)
Method void System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int) emitted at 700000000111710 to 70000000011197c (code length 620) [exception.exe]
[1: 0.05198 12] ENTER: System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)() ip: 7000000001111fc
[1: 0.05206 12] LEAVE: System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)
[1: 0.05214 11] LEAVE: System.Text.StringBuilder:.ctor (string,int,int,int)
[1: 0.05222 10] LEAVE: System.Text.StringBuilder:.ctor (string,int)
[1: 0.05230 9] LEAVE: System.Text.StringBuilder:.ctor (int)
[1: 0.05237 8] LEAVE: System.Text.StringBuilderCache:Acquire (int)[System.Text.StringBuilder:700000000402de0]
converting method System.Text.StringBuilder System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)
Method System.Text.StringBuilder System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray) emitted at 7000000001119b0 to 700000000112b98 (code length 4584) [exception.exe]
[1: 0.05491 8] ENTER: System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)() ip: 70000000008b970
converting method object System.Globalization.CultureInfo:GetFormat (System.Type)
Method object System.Globalization.CultureInfo:GetFormat (System.Type) emitted at 700000000112ce8 to 700000000112e70 (code length 392) [exception.exe]
[1: 0.05544 9] ENTER: System.Globalization.CultureInfo:GetFormat (System.Type)() ip: 700000000111ab8
[1: 0.05552 9] LEAVE: System.Globalization.CultureInfo:GetFormat (System.Type)[OBJECT:0]
converting method System.Text.StringBuilder System.Text.StringBuilder:Append (char)
Method System.Text.StringBuilder System.Text.StringBuilder:Append (char) emitted at 700000000112e70 to 70000000011303c (code length 460) [exception.exe]
[1: 0.05599 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05607 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05615 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05623 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05631 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05639 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05647 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05655 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05663 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05671 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05679 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05687 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05695 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05703 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05711 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05719 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05728 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05736 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05744 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05752 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05760 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05768 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05776 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05784 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05792 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05800 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05808 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05816 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05824 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05832 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05840 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05849 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05857 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05865 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05873 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05882 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05897 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05905 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05913 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05921 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05929 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05937 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05946 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05953 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05962 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05970 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05978 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.05986 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.05994 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06002 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06010 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06018 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
converting method object System.ParamsArray:get_Item (int)
Method object System.ParamsArray:get_Item (int) emitted at 700000000113040 to 700000000113168 (code length 296) [exception.exe]
[1: 0.06055 9] ENTER: System.ParamsArray:get_Item (int)() ip: 70000000011237c
[1: 0.06063 9] LEAVE: System.ParamsArray:get_Item (int)[System.String:700000000400610]
converting method string string:ToString ()
Method string string:ToString () emitted at 700000000113198 to 700000000113234 (code length 156) [exception.exe]
[1: 0.06096 9] ENTER: string:ToString ()() ip: 700000000112880
[1: 0.06104 9] LEAVE: string:ToString ()[System.String:700000000400610]
converting method System.Text.StringBuilder System.Text.StringBuilder:Append (string)
Method System.Text.StringBuilder System.Text.StringBuilder:Append (string) emitted at 700000000113238 to 700000000113558 (code length 800) [exception.exe]
[1: 0.06158 9] ENTER: System.Text.StringBuilder:Append (string)() ip: 700000000112924
converting method void string:wstrcpy (char*,char*,int)
Method void string:wstrcpy (char*,char*,int) emitted at 700000000113588 to 70000000011365c (code length 212) [exception.exe]
[1: 0.06193 10] ENTER: string:wstrcpy (char*,char*,int)() ip: 70000000011343c
converting method void System.Buffer:Memcpy (byte*,byte*,int)
Method void System.Buffer:Memcpy (byte*,byte*,int) emitted at 700000000113690 to 70000000011389c (code length 524) [exception.exe]
[1: 0.06242 11] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
converting method void System.Buffer:memcpy4 (byte*,byte*,int)
Method void System.Buffer:memcpy4 (byte*,byte*,int) emitted at 700000000113930 to 700000000113a78 (code length 328) [exception.exe]
[1: 0.06285 12] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.06293 12] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.06301 11] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.06309 10] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.06316 9] LEAVE: System.Text.StringBuilder:Append (string)[System.Text.StringBuilder:700000000402de0]
[1: 0.06324 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06333 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06341 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06349 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06358 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06366 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06374 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06382 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06390 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06399 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06407 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06415 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06423 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06431 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06439 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06447 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06455 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06463 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06471 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06479 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06487 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06495 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06503 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06511 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06519 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06527 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06535 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06543 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06551 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06559 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06567 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06575 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06583 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06591 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06599 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06607 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06615 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06623 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06631 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06639 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06647 9] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.06655 9] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.06663 8] LEAVE: System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)[System.Text.StringBuilder:700000000402de0]
converting method string System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)
Method string System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder) emitted at 700000000113a78 to 700000000113b94 (code length 284) [exception.exe]
[1: 0.06700 8] ENTER: System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)() ip: 70000000008b994
converting method string System.Text.StringBuilder:ToString ()
Method string System.Text.StringBuilder:ToString () emitted at 700000000113bc8 to 700000000113f84 (code length 956) [exception.exe]
[1: 0.06764 9] ENTER: System.Text.StringBuilder:ToString ()() ip: 700000000113ae0
converting method (wrapper managed-to-native) string string:FastAllocateString (int)
Method (wrapper managed-to-native) string string:FastAllocateString (int) emitted at 700000000113fb8 to 700000000114264 (code length 684) [exception.exe]
[1: 0.06809 10] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000113cb0
[1: 0.06818 10] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:700000000402ea8]
[1: 0.06827 10] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000113dd0
[1: 0.06835 11] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.06843 12] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.06851 12] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.06859 11] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.06866 10] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.06874 9] LEAVE: System.Text.StringBuilder:ToString ()[System.String:700000000402ea8]
converting method void System.Text.StringBuilderCache:Release (System.Text.StringBuilder)
Method void System.Text.StringBuilderCache:Release (System.Text.StringBuilder) emitted at 700000000114268 to 70000000011439c (code length 308) [exception.exe]
[1: 0.06914 9] ENTER: System.Text.StringBuilderCache:Release (System.Text.StringBuilder)() ip: 700000000113b0c
[1: 0.06922 9] LEAVE: System.Text.StringBuilderCache:Release (System.Text.StringBuilder)
[1: 0.06930 8] LEAVE: System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)[System.String:700000000402ea8]
[1: 0.06938 7] LEAVE: string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)[System.String:700000000402ea8]
[1: 0.06946 6] LEAVE: string:Format (System.IFormatProvider,string,object[])[System.String:700000000402ea8]
[1: 0.06955 5] LEAVE: System.Environment:GetResourceString (string,object[])[System.String:700000000402ea8]
converting method void System.SystemException:.ctor (string,System.Exception)
Method void System.SystemException:.ctor (string,System.Exception) emitted at 7000000001143a0 to 7000000001144b0 (code length 272) [exception.exe]
[1: 0.06993 5] ENTER: System.SystemException:.ctor (string,System.Exception)() ip: 700000000085560
converting method void System.Exception:.ctor (string,System.Exception)
Method void System.Exception:.ctor (string,System.Exception) emitted at 7000000001144e0 to 700000000114664 (code length 388) [exception.exe]
[1: 0.07030 6] ENTER: System.Exception:.ctor (string,System.Exception)() ip: 700000000114424
[1: 0.07039 7] ENTER: System.Exception:Init ()() ip: 70000000011455c
[1: 0.07047 8] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.07054 8] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000402f30]
[1: 0.07063 7] LEAVE: System.Exception:Init ()
[1: 0.07071 6] LEAVE: System.Exception:.ctor (string,System.Exception)
[1: 0.07079 5] LEAVE: System.SystemException:.ctor (string,System.Exception)
[1: 0.07087 4] LEAVE: System.TypeInitializationException:.ctor (string,System.Exception)
[1: 0.07096 3] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.07107 3] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.07115 4] ENTER: System.Exception:get_Message ()() ip: 7000000000852e0
[1: 0.07123 4] LEAVE: System.Exception:get_Message ()[System.String:700000000402ea8]
[1: 0.07132 3] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[System.String:700000000402ea8]
[1:] EXCEPTION handling: System.TypeInitializationException: The type initializer for 'Offending' threw an exception.
converting method string System.Exception:ToString ()
Method string System.Exception:ToString () emitted at 700000000114668 to 700000000114730 (code length 200) [exception.exe]
[1: 0.07176 3] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.07185 4] ENTER: System.Exception:ToString ()() ip: 7000000000852e0
converting method string System.Exception:ToString (bool,bool)
Method string System.Exception:ToString (bool,bool) emitted at 700000000114760 to 700000000114c14 (code length 1204) [exception.exe]
[1: 0.07249 5] ENTER: System.Exception:ToString (bool,bool)() ip: 7000000001146e0
[1: 0.07257 6] ENTER: System.Exception:get_Message ()() ip: 7000000001147ec
[1: 0.07265 6] LEAVE: System.Exception:get_Message ()[System.String:700000000402ea8]
converting method string System.Exception:GetClassName ()
Method string System.Exception:GetClassName () emitted at 700000000114cd8 to 700000000114e38 (code length 352) [exception.exe]
[1: 0.07313 6] ENTER: System.Exception:GetClassName ()() ip: 700000000114874
converting method string System.RuntimeType:ToString ()
Method string System.RuntimeType:ToString () emitted at 700000000114e38 to 700000000114f00 (code length 200) [exception.exe]
converting method void System.RuntimeType:.cctor ()
Method void System.RuntimeType:.cctor () emitted at 700000000114f30 to 700000000115240 (code length 784) [exception.exe]
[1: 0.07410 7] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.07418 8] ENTER: System.RuntimeType:.cctor ()() ip: 700000000083e8c
[1: 0.07426 8] LEAVE: System.RuntimeType:.cctor ()
[1: 0.07434 7] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.07443 7] ENTER: System.RuntimeType:ToString ()() ip: 700000000114d64
converting method (wrapper managed-to-native) string System.RuntimeType:getFullName (System.RuntimeType,bool,bool)
Method (wrapper managed-to-native) string System.RuntimeType:getFullName (System.RuntimeType,bool,bool) emitted at 700000000115240 to 700000000115624 (code length 996) [exception.exe]
[1: 0.07495 8] ENTER: (wrapper managed-to-native) System.RuntimeType:getFullName (System.RuntimeType,bool,bool)() ip: 700000000114eb0
converting method void string:memset (byte*,int,int)
Method void string:memset (byte*,int,int) emitted at 700000000115658 to 70000000011580c (code length 436) [exception.exe]
[1: 0.07544 9] ENTER: string:memset (byte*,int,int)() ip: 7000000001153c8
[1: 0.07551 9] LEAVE: string:memset (byte*,int,int)
[1: 0.07560 8] LEAVE: (wrapper managed-to-native) System.RuntimeType:getFullName (System.RuntimeType,bool,bool)[System.String:700000000403090]
[1: 0.07569 7] LEAVE: System.RuntimeType:ToString ()[System.String:700000000403090]
[1: 0.07577 6] LEAVE: System.Exception:GetClassName ()[System.String:700000000403090]
converting method string string:Concat (string,string,string)
Method string string:Concat (string,string,string) emitted at 700000000115810 to 700000000115a90 (code length 640) [exception.exe]
[1: 0.07624 6] ENTER: string:Concat (string,string,string)() ip: 7000000001148b0
[1: 0.07633 7] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000115948
[1: 0.07641 7] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:7000000004030f0]
converting method void string:FillStringChecked (string,int,string)
Method void string:FillStringChecked (string,int,string) emitted at 700000000115ac0 to 700000000115ca4 (code length 484) [exception.exe]
[1: 0.07684 7] ENTER: string:FillStringChecked (string,int,string)() ip: 70000000011597c
[1: 0.07692 8] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.07700 9] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.07708 10] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.07716 10] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.07723 9] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.07731 8] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.07739 7] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.07747 7] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159b4
[1: 0.07755 8] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.07763 9] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.07771 10] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.07785 10] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.07793 9] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.07801 8] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.07808 7] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.07817 7] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159fc
[1: 0.07824 8] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.07832 9] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.07840 10] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.07848 10] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.07856 9] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.07863 8] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.07871 7] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.07881 6] LEAVE: string:Concat (string,string,string)[System.String:7000000004030f0]
[1: 0.07889 6] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000114900
[1: 0.07897 6] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:7000000004031c0]
[1: 0.07905 6] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000011492c
[1: 0.07913 6] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.07921 6] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000011496c
[1: 0.07929 6] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.07937 6] ENTER: System.Exception:ToString (bool,bool)() ip: 7000000001149bc
[1: 0.07945 7] ENTER: System.Exception:get_Message ()() ip: 7000000001147ec
[1: 0.07953 7] LEAVE: System.Exception:get_Message ()[System.String:7000000000ec130]
[1: 0.07961 7] ENTER: System.Exception:GetClassName ()() ip: 700000000114874
[1: 0.07969 8] ENTER: System.RuntimeType:ToString ()() ip: 700000000114d64
[1: 0.07977 9] ENTER: (wrapper managed-to-native) System.RuntimeType:getFullName (System.RuntimeType,bool,bool)() ip: 700000000114eb0
[1: 0.07985 10] ENTER: string:memset (byte*,int,int)() ip: 7000000001153c8
[1: 0.07993 10] LEAVE: string:memset (byte*,int,int)
[1: 0.08001 9] LEAVE: (wrapper managed-to-native) System.RuntimeType:getFullName (System.RuntimeType,bool,bool)[System.String:700000000403210]
[1: 0.08009 8] LEAVE: System.RuntimeType:ToString ()[System.String:700000000403210]
[1: 0.08017 7] LEAVE: System.Exception:GetClassName ()[System.String:700000000403210]
[1: 0.08026 7] ENTER: string:Concat (string,string,string)() ip: 7000000001148b0
[1: 0.08033 8] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000115948
[1: 0.08041 8] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:700000000403248]
[1: 0.08050 8] ENTER: string:FillStringChecked (string,int,string)() ip: 70000000011597c
[1: 0.08057 9] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.08065 10] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.08073 11] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.08081 11] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.08088 10] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.08097 9] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.08105 8] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.08113 8] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159b4
[1: 0.08121 9] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.08128 10] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.08136 11] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.08144 11] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.08152 10] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.08160 9] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.08167 8] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.08175 8] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159fc
[1: 0.08183 9] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.08191 10] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.08199 11] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.08206 11] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.08214 10] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.08222 9] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.08230 8] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.08238 7] LEAVE: string:Concat (string,string,string)[System.String:700000000403248]
converting method string System.Exception:GetStackTrace (bool)
Method string System.Exception:GetStackTrace (bool) emitted at 700000000115ca8 to 700000000115e60 (code length 440) [exception.exe]
[1: 0.08285 7] ENTER: System.Exception:GetStackTrace (bool)() ip: 700000000114b14
converting method string System.Environment:GetStackTrace (System.Exception,bool)
Method string System.Environment:GetStackTrace (System.Exception,bool) emitted at 700000000115ec0 to 7000000001160b4 (code length 500) [exception.exe]
[1: 0.08335 8] ENTER: System.Environment:GetStackTrace (System.Exception,bool)() ip: 700000000115da4
[1: 0.08344 9] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000115fc4
[1: 0.08352 9] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Diagnostics.StackTrace:700000000403290]
converting method void System.Diagnostics.StackTrace:.ctor (System.Exception,bool)
Method void System.Diagnostics.StackTrace:.ctor (System.Exception,bool) emitted at 700000000116148 to 700000000116210 (code length 200) [exception.exe]
[1: 0.08387 9] ENTER: System.Diagnostics.StackTrace:.ctor (System.Exception,bool)() ip: 700000000115ff4
converting method void System.Diagnostics.StackTrace:.ctor (System.Exception,int,bool)
Method void System.Diagnostics.StackTrace:.ctor (System.Exception,int,bool) emitted at 700000000116240 to 70000000011652c (code length 748) [exception.exe]
[1: 0.08434 10] ENTER: System.Diagnostics.StackTrace:.ctor (System.Exception,int,bool)() ip: 7000000001161cc
converting method (wrapper managed-to-native) System.Diagnostics.StackFrame[] System.Diagnostics.StackTrace:get_trace (System.Exception,int,bool)
Method (wrapper managed-to-native) System.Diagnostics.StackFrame[] System.Diagnostics.StackTrace:get_trace (System.Exception,int,bool) emitted at 700000000116560 to 700000000116818 (code length 696) [exception.exe]
[1: 0.08471 11] ENTER: (wrapper managed-to-native) System.Diagnostics.StackTrace:get_trace (System.Exception,int,bool)() ip: 7000000001162e4
[1: 0.08644 11] LEAVE: (wrapper managed-to-native) System.Diagnostics.StackTrace:get_trace (System.Exception,int,bool)[System.Diagnostics.StackFrame[]:7000000004032b8]
[1: 0.08653 10] LEAVE: System.Diagnostics.StackTrace:.ctor (System.Exception,int,bool)
[1: 0.08661 9] LEAVE: System.Diagnostics.StackTrace:.ctor (System.Exception,bool)
converting method string System.Diagnostics.StackTrace:ToString (System.Diagnostics.StackTrace/TraceFormat)
Method string System.Diagnostics.StackTrace:ToString (System.Diagnostics.StackTrace/TraceFormat) emitted at 700000000116818 to 700000000116908 (code length 240) [exception.exe]
[1: 0.08694 9] ENTER: System.Diagnostics.StackTrace:ToString (System.Diagnostics.StackTrace/TraceFormat)() ip: 700000000116030
converting method string System.Diagnostics.StackTrace:ToString ()
Method string System.Diagnostics.StackTrace:ToString () emitted at 700000000116908 to 700000000116c7c (code length 884) [exception.exe]
[1: 0.08748 10] ENTER: System.Diagnostics.StackTrace:ToString ()() ip: 700000000116884
[1: 0.08757 11] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000011699c
[1: 0.08765 11] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Text.StringBuilder:700000000403400]
converting method void System.Text.StringBuilder:.ctor ()
Method void System.Text.StringBuilder:.ctor () emitted at 700000000116cb0 to 700000000116d68 (code length 184) [exception.exe]
[1: 0.08805 11] ENTER: System.Text.StringBuilder:.ctor ()() ip: 7000000001169c4
[1: 0.08813 12] ENTER: System.Text.StringBuilder:.ctor (int)() ip: 700000000116d24
[1: 0.08821 13] ENTER: System.Text.StringBuilder:.ctor (string,int)() ip: 70000000008be4c
[1: 0.08829 14] ENTER: System.Text.StringBuilder:.ctor (string,int,int,int)() ip: 70000000008bf7c
[1: 0.08836 15] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000111158
[1: 0.08844 15] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Char[]:700000000403430]
[1: 0.08853 15] ENTER: System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)() ip: 7000000001111fc
[1: 0.08861 15] LEAVE: System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)
[1: 0.08869 14] LEAVE: System.Text.StringBuilder:.ctor (string,int,int,int)
[1: 0.08877 13] LEAVE: System.Text.StringBuilder:.ctor (string,int)
[1: 0.08885 12] LEAVE: System.Text.StringBuilder:.ctor (int)
[1: 0.08893 11] LEAVE: System.Text.StringBuilder:.ctor ()
converting method bool System.Diagnostics.StackTrace:AddFrames (System.Text.StringBuilder)
Method bool System.Diagnostics.StackTrace:AddFrames (System.Text.StringBuilder) emitted at 700000000116d68 to 700000000117738 (code length 2512) [exception.exe]
[1: 0.09074 11] ENTER: System.Diagnostics.StackTrace:AddFrames (System.Text.StringBuilder)() ip: 700000000116b9c
converting method int System.Diagnostics.StackTrace:get_FrameCount ()
Method int System.Diagnostics.StackTrace:get_FrameCount () emitted at 7000000001178e8 to 7000000001179f0 (code length 264) [exception.exe]
[1: 0.09112 12] ENTER: System.Diagnostics.StackTrace:get_FrameCount ()() ip: 70000000011765c
[1: 0.09120 12] LEAVE: System.Diagnostics.StackTrace:get_FrameCount ()result=1
converting method System.Diagnostics.StackFrame System.Diagnostics.StackTrace:GetFrame (int)
Method System.Diagnostics.StackFrame System.Diagnostics.StackTrace:GetFrame (int) emitted at 7000000001179f0 to 700000000117b70 (code length 384) [exception.exe]
[1: 0.09157 12] ENTER: System.Diagnostics.StackTrace:GetFrame (int)() ip: 700000000116e2c
[1: 0.09165 13] ENTER: System.Diagnostics.StackTrace:get_FrameCount ()() ip: 700000000117a6c
[1: 0.09173 13] LEAVE: System.Diagnostics.StackTrace:get_FrameCount ()result=1
[1: 0.09181 12] LEAVE: System.Diagnostics.StackTrace:GetFrame (int)[System.Diagnostics.StackFrame:7000000004032e0]
converting method System.Reflection.MethodBase System.Diagnostics.StackFrame:GetMethod ()
Method System.Reflection.MethodBase System.Diagnostics.StackFrame:GetMethod () emitted at 700000000117b70 to 700000000117c48 (code length 216) [exception.exe]
[1: 0.09215 12] ENTER: System.Diagnostics.StackFrame:GetMethod ()() ip: 700000000116e50
[1: 0.09223 12] LEAVE: System.Diagnostics.StackFrame:GetMethod ()[System.Reflection.MonoCMethod:700000000403328]
converting method bool System.Reflection.MethodBase:op_Equality (System.Reflection.MethodBase,System.Reflection.MethodBase)
Method bool System.Reflection.MethodBase:op_Equality (System.Reflection.MethodBase,System.Reflection.MethodBase) emitted at 700000000117c48 to 700000000117f70 (code length 808) [exception.exe]
[1: 0.09290 12] ENTER: System.Reflection.MethodBase:op_Equality (System.Reflection.MethodBase,System.Reflection.MethodBase)() ip: 700000000116e78
[1: 0.09298 12] LEAVE: System.Reflection.MethodBase:op_Equality (System.Reflection.MethodBase,System.Reflection.MethodBase)result=0
[1: 0.09306 12] ENTER: System.Diagnostics.StackFrame:GetMethod ()() ip: 7000000001170a8
[1: 0.09314 12] LEAVE: System.Diagnostics.StackFrame:GetMethod ()[System.Reflection.MonoCMethod:700000000403328]
converting method void System.Diagnostics.StackTrace:GetFullNameForStackTrace (System.Text.StringBuilder,System.Reflection.MethodBase,bool,bool&)
Method void System.Diagnostics.StackTrace:GetFullNameForStackTrace (System.Text.StringBuilder,System.Reflection.MethodBase,bool,bool&) emitted at 700000000118030 to 700000000118aa4 (code length 2676) [exception.exe]
[1: 0.09470 12] ENTER: System.Diagnostics.StackTrace:GetFullNameForStackTrace (System.Text.StringBuilder,System.Reflection.MethodBase,bool,bool&)() ip: 7000000001170e0
converting method System.Type System.Reflection.MonoCMethod:get_DeclaringType ()
Method System.Type System.Reflection.MonoCMethod:get_DeclaringType () emitted at 700000000118ad8 to 700000000118bd4 (code length 252) [exception.exe]
[1: 0.09517 13] ENTER: System.Reflection.MonoCMethod:get_DeclaringType ()() ip: 7000000001180d4
converting method System.Type System.Reflection.MonoMethodInfo:GetDeclaringType (intptr)
Method System.Type System.Reflection.MonoMethodInfo:GetDeclaringType (intptr) emitted at 700000000118c08 to 700000000118ce4 (code length 220) [exception.exe]
[1: 0.09556 14] ENTER: System.Reflection.MonoMethodInfo:GetDeclaringType (intptr)() ip: 700000000118b54
converting method System.Reflection.MonoMethodInfo System.Reflection.MonoMethodInfo:GetMethodInfo (intptr)
Method System.Reflection.MonoMethodInfo System.Reflection.MonoMethodInfo:GetMethodInfo (intptr) emitted at 700000000118d18 to 700000000118ea0 (code length 392) [exception.exe]
[1: 0.09595 15] ENTER: System.Reflection.MonoMethodInfo:GetMethodInfo (intptr)() ip: 700000000118c90
converting method (wrapper managed-to-native) void System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&)
Method (wrapper managed-to-native) void System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&) emitted at 700000000118ed0 to 700000000119230 (code length 864) [exception.exe]
[1: 0.09638 16] ENTER: (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&)() ip: 700000000118da4
[1: 0.09647 17] ENTER: string:memset (byte*,int,int)() ip: 700000000119054
[1: 0.09655 17] LEAVE: string:memset (byte*,int,int)
[1: 0.09664 16] LEAVE: (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&)
[1: 0.09673 15] LEAVE: System.Reflection.MonoMethodInfo:GetMethodInfo (intptr)[00,00,00,01,00,00,00,00,00,00,00,01,10,34,86,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,]
[1: 0.09683 14] LEAVE: System.Reflection.MonoMethodInfo:GetDeclaringType (intptr)[System.RuntimeType:7000000001085e0]
[1: 0.09691 13] LEAVE: System.Reflection.MonoCMethod:get_DeclaringType ()[System.RuntimeType:7000000001085e0]
converting method bool System.RuntimeType:get_IsGenericType ()
Method bool System.RuntimeType:get_IsGenericType () emitted at 700000000119230 to 7000000001192f0 (code length 192) [exception.exe]
[1: 0.09730 13] ENTER: System.RuntimeType:get_IsGenericType ()() ip: 7000000001180f8
converting method (wrapper managed-to-native) bool System.RuntimeTypeHandle:HasInstantiation (System.RuntimeType)
Method (wrapper managed-to-native) bool System.RuntimeTypeHandle:HasInstantiation (System.RuntimeType) emitted at 700000000119320 to 7000000001196a0 (code length 896) [exception.exe]
[1: 0.09775 14] ENTER: (wrapper managed-to-native) System.RuntimeTypeHandle:HasInstantiation (System.RuntimeType)() ip: 7000000001192a0
[1: 0.09783 15] ENTER: string:memset (byte*,int,int)() ip: 7000000001194a0
[1: 0.09791 15] LEAVE: string:memset (byte*,int,int)
[1: 0.09799 14] LEAVE: (wrapper managed-to-native) System.RuntimeTypeHandle:HasInstantiation (System.RuntimeType)result=0
[1: 0.09807 13] LEAVE: System.RuntimeType:get_IsGenericType ()result=0
converting method bool System.Reflection.CustomAttributeExtensions:IsDefined (System.Reflection.MemberInfo,System.Type)
Method bool System.Reflection.CustomAttributeExtensions:IsDefined (System.Reflection.MemberInfo,System.Type) emitted at 7000000001196a0 to 700000000119768 (code length 200) [exception.exe]
[1: 0.09843 13] ENTER: System.Reflection.CustomAttributeExtensions:IsDefined (System.Reflection.MemberInfo,System.Type)() ip: 700000000118250
converting method bool System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type)
Method bool System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type) emitted at 700000000119798 to 700000000119864 (code length 204) [exception.exe]
[1: 0.09880 14] ENTER: System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type)() ip: 700000000119718
converting method bool System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type,bool)
Method bool System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type,bool) emitted at 700000000119898 to 700000000119d34 (code length 1180) [exception.exe]
[1: 0.09950 15] ENTER: System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type,bool)() ip: 700000000119814
converting method bool System.Reflection.MemberInfo:op_Equality (System.Reflection.MemberInfo,System.Reflection.MemberInfo)
Method bool System.Reflection.MemberInfo:op_Equality (System.Reflection.MemberInfo,System.Reflection.MemberInfo) emitted at 700000000119df8 to 70000000011a46c (code length 1652) [exception.exe]
[1: 0.10042 16] ENTER: System.Reflection.MemberInfo:op_Equality (System.Reflection.MemberInfo,System.Reflection.MemberInfo)() ip: 700000000119920
[1: 0.10050 16] LEAVE: System.Reflection.MemberInfo:op_Equality (System.Reflection.MemberInfo,System.Reflection.MemberInfo)result=0
converting method bool System.RuntimeType:IsSubclassOf (System.Type)
Method bool System.RuntimeType:IsSubclassOf (System.Type) emitted at 70000000011a5c0 to 70000000011a8b8 (code length 760) [exception.exe]
[1: 0.10112 16] ENTER: System.RuntimeType:IsSubclassOf (System.Type)() ip: 700000000119974
converting method System.RuntimeType System.RuntimeType:GetBaseType ()
Method System.RuntimeType System.RuntimeType:GetBaseType () emitted at 70000000011a8e8 to 70000000011aca8 (code length 960) [exception.exe]
[1: 0.10182 17] ENTER: System.RuntimeType:GetBaseType ()() ip: 70000000011a6b0
converting method bool System.Type:get_IsInterface ()
Method bool System.Type:get_IsInterface () emitted at 70000000011ad38 to 70000000011aee8 (code length 432) [exception.exe]
converting method void System.Type:.cctor ()
converting method void System.__Filters:.cctor ()
Method void System.__Filters:.cctor () emitted at 70000000011af18 to 70000000011b018 (code length 256) [exception.exe]
[1: 0.10278 18] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.10286 19] ENTER: System.__Filters:.cctor ()() ip: 700000000083e8c
[1: 0.10294 20] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000011af94
[1: 0.10303 20] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.__Filters:700000000403710]
converting method void System.__Filters:.ctor ()
Method void System.__Filters:.ctor () emitted at 70000000011b048 to 70000000011b0d4 (code length 140) [exception.exe]
[1: 0.10335 20] ENTER: System.__Filters:.ctor ()() ip: 70000000011afbc
[1: 0.10343 20] LEAVE: System.__Filters:.ctor ()
[1: 0.10352 19] LEAVE: System.__Filters:.cctor ()
[1: 0.10360 18] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
converting method void System.Reflection.Missing:.cctor ()
Method void System.Reflection.Missing:.cctor () emitted at 70000000011b108 to 70000000011b208 (code length 256) [exception.exe]
[1: 0.10431 18] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.10440 19] ENTER: System.Reflection.Missing:.cctor ()() ip: 700000000083e8c
[1: 0.10448 20] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000011b184
[1: 0.10456 20] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Reflection.Missing:700000000403720]
converting method void System.Reflection.Missing:.ctor ()
Method void System.Reflection.Missing:.ctor () emitted at 70000000011b238 to 70000000011b2c4 (code length 140) [exception.exe]
[1: 0.10489 20] ENTER: System.Reflection.Missing:.ctor ()() ip: 70000000011b1ac
[1: 0.10497 20] LEAVE: System.Reflection.Missing:.ctor ()
[1: 0.10505 19] LEAVE: System.Reflection.Missing:.cctor ()
[1: 0.10513 18] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
converting gshared method void System.EmptyArray`1<System.Type>:.cctor ()
Method void System.EmptyArray`1<T_REF>:.cctor () emitted at 70000000011b2c8 to 70000000011b3d8 (code length 272) [exception.exe]
converting method (wrapper runtime-invoke) object object:runtime_invoke_void (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object object:runtime_invoke_void (object,intptr,intptr,intptr) emitted at 70000000011b480 to 70000000011b6d8 (code length 600) [exception.exe]
[1: 0.10611 18] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.10619 19] ENTER: System.EmptyArray`1<T_REF>:.cctor ()() ip: 70000000011b58c
[1: 0.10641 20] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000011b360
[1: 0.10649 20] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[.:700000000403730]
converting method void System.NullReferenceException:.ctor ()
Method void System.NullReferenceException:.ctor () emitted at 70000000011b6d8 to 70000000011b7ec (code length 276) [exception.exe]
converting method (wrapper runtime-invoke) object object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)
Method (wrapper runtime-invoke) object object:runtime_invoke_void__this__ (object,intptr,intptr,intptr) emitted at 70000000011b7f0 to 70000000011ba50 (code length 608) [exception.exe]
[1: 0.10738 20] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.10746 21] ENTER: System.NullReferenceException:.ctor ()() ip: 70000000011b994
[1: 0.10755 22] ENTER: System.SystemException:.ctor (string)() ip: 70000000011b760
[1: 0.10762 23] ENTER: System.Exception:.ctor (string)() ip: 700000000083a68
[1: 0.10764 24] ENTER: System.Exception:Init ()() ip: 700000000083b88
[1: 0.10766 25] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.10767 25] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000403858]
[1: 0.10770 24] LEAVE: System.Exception:Init ()
[1: 0.10772 23] LEAVE: System.Exception:.ctor (string)
[1: 0.10774 23] ENTER: System.Exception:SetErrorCode (int)() ip: 700000000083a98
[1: 0.10776 23] LEAVE: System.Exception:SetErrorCode (int)
[1: 0.10778 22] LEAVE: System.SystemException:.ctor (string)
[1: 0.10780 21] LEAVE: System.NullReferenceException:.ctor ()
[1: 0.10781 20] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void__this__ (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.10784 20] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.10786 21] ENTER: System.Exception:get_Message ()() ip: 7000000000852e0
[1: 0.10788 21] LEAVE: System.Exception:get_Message ()[System.String:700000000403890]
[1: 0.10791 20] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[System.String:700000000403890]
[1:] EXCEPTION handling: System.NullReferenceException: Object reference not set to an instance of an object
EXCEPTION: catch found at clause 0 of (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)
[1: 0.10797 19] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.10800 19] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.10802 20] ENTER: System.TypeInitializationException:.ctor (string,System.Exception)() ip: 700000000085820
[1: 0.10804 21] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 7000000000854c8
[1: 0.10805 21] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Object[]:700000000403a18]
[1: 0.10807 21] ENTER: (wrapper stelemref) object:virt_stelemref_object (intptr,object)() ip: 7000000000854f4
[1: 0.10809 21] LEAVE: (wrapper stelemref) object:virt_stelemref_object (intptr,object)
[1: 0.10811 21] ENTER: System.Environment:GetResourceString (string,object[])() ip: 700000000085530
[1: 0.10812 22] ENTER: System.Globalization.CultureInfo:get_InvariantCulture ()() ip: 700000000085e98
[1: 0.10814 22] LEAVE: System.Globalization.CultureInfo:get_InvariantCulture ()[System.Globalization.CultureInfo:700000000400770]
[1: 0.10815 22] ENTER: string:Format (System.IFormatProvider,string,object[])() ip: 700000000085ec4
[1: 0.10817 23] ENTER: System.ParamsArray:.ctor (object[])() ip: 70000000008b2e0
[1: 0.10818 23] LEAVE: System.ParamsArray:.ctor (object[])
[1: 0.10820 23] ENTER: string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)() ip: 70000000008b33c
[1: 0.10822 24] ENTER: System.Text.StringBuilderCache:Acquire (int)() ip: 70000000008b904
converting method System.Text.StringBuilder System.Text.StringBuilder:Clear ()
Method System.Text.StringBuilder System.Text.StringBuilder:Clear () emitted at 70000000011ba50 to 70000000011bb18 (code length 200) [exception.exe]
[1: 0.10835 25] ENTER: System.Text.StringBuilder:Clear ()() ip: 70000000008bc68
converting method void System.Text.StringBuilder:set_Length (int)
Method void System.Text.StringBuilder:set_Length (int) emitted at 70000000011bb48 to 70000000011c018 (code length 1232) [exception.exe]
[1: 0.10882 26] ENTER: System.Text.StringBuilder:set_Length (int)() ip: 70000000011bac4
[1: 0.10884 26] LEAVE: System.Text.StringBuilder:set_Length (int)
[1: 0.10886 25] LEAVE: System.Text.StringBuilder:Clear ()[System.Text.StringBuilder:700000000402de0]
[1: 0.10887 24] LEAVE: System.Text.StringBuilderCache:Acquire (int)[System.Text.StringBuilder:700000000402de0]
[1: 0.10889 24] ENTER: System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)() ip: 70000000008b970
[1: 0.10891 25] ENTER: System.Globalization.CultureInfo:GetFormat (System.Type)() ip: 700000000111ab8
[1: 0.10892 25] LEAVE: System.Globalization.CultureInfo:GetFormat (System.Type)[OBJECT:0]
[1: 0.10894 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10895 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10897 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10898 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10900 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10902 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10903 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10905 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10906 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10908 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10910 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10911 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10913 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10914 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10916 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10917 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10919 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10920 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10922 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10923 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10925 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.10927 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.10928 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24339 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24347 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24355 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24363 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24371 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24379 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24387 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24395 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24403 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24411 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24419 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24427 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24435 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24443 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24451 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24459 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24467 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24475 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24483 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24491 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24499 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24507 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24515 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24523 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24531 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24539 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24547 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24555 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24563 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24571 25] ENTER: System.ParamsArray:get_Item (int)() ip: 70000000011237c
[1: 0.24579 25] LEAVE: System.ParamsArray:get_Item (int)[System.String:700000000403948]
[1: 0.24587 25] ENTER: string:ToString ()() ip: 700000000112880
[1: 0.24595 25] LEAVE: string:ToString ()[System.String:700000000403948]
[1: 0.24603 25] ENTER: System.Text.StringBuilder:Append (string)() ip: 700000000112924
[1: 0.24611 26] ENTER: string:wstrcpy (char*,char*,int)() ip: 70000000011343c
[1: 0.24619 27] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.24627 28] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.24634 28] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.24643 27] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.24651 26] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.24658 25] LEAVE: System.Text.StringBuilder:Append (string)[System.Text.StringBuilder:700000000402de0]
[1: 0.24666 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24674 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24682 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24690 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24699 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24706 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24715 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24722 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24730 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24738 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24747 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24754 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24763 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24770 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24779 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24786 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24795 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24802 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24811 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24818 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24827 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24835 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24843 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24851 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24859 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.24866 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.24875 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
converting method System.Text.StringBuilder System.Text.StringBuilder:Append (char,int)
Method System.Text.StringBuilder System.Text.StringBuilder:Append (char,int) emitted at 70000000011c078 to 70000000011c33c (code length 708) [exception.exe]
[1: 0.24925 26] ENTER: System.Text.StringBuilder:Append (char,int)() ip: 700000000112f84
converting method void System.Text.StringBuilder:ExpandByABlock (int)
Method void System.Text.StringBuilder:ExpandByABlock (int) emitted at 70000000011c370 to 70000000011c7a8 (code length 1080) [exception.exe]
[1: 0.24985 27] ENTER: System.Text.StringBuilder:ExpandByABlock (int)() ip: 70000000011c1a8
converting method int System.Math:Min (int,int)
Method int System.Math:Min (int,int) emitted at 70000000011c838 to 70000000011c8f4 (code length 188) [exception.exe]
converting method void System.Math:.cctor ()
Method void System.Math:.cctor () emitted at 70000000011c8f8 to 70000000011ca3c (code length 324) [exception.exe]
[1: 0.25154 28] ENTER: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.25162 29] ENTER: System.Math:.cctor ()() ip: 700000000083e8c
[1: 0.25170 30] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000011c99c
[1: 0.25179 30] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Double[]:700000000403a40]
converting method void System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,System.RuntimeFieldHandle)
Method void System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,System.RuntimeFieldHandle) emitted at 70000000011ca70 to 70000000011cbf4 (code length 388) [exception.exe]
[1: 0.25231 30] ENTER: System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,System.RuntimeFieldHandle)() ip: 70000000011c9e0
converting method (wrapper managed-to-native) void System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,intptr)
Method (wrapper managed-to-native) void System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,intptr) emitted at 70000000011cc28 to 70000000011cf84 (code length 860) [exception.exe]
[1: 0.25273 31] ENTER: (wrapper managed-to-native) System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,intptr)() ip: 70000000011cb2c
[1: 0.25282 32] ENTER: string:memset (byte*,int,int)() ip: 70000000011cdac
[1: 0.25290 32] LEAVE: string:memset (byte*,int,int)
[1: 0.25299 31] LEAVE: (wrapper managed-to-native) System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,intptr)
[1: 0.25307 30] LEAVE: System.Runtime.CompilerServices.RuntimeHelpers:InitializeArray (System.Array,System.RuntimeFieldHandle)
[1: 0.25315 29] LEAVE: System.Math:.cctor ()
[1: 0.25323 28] LEAVE: (wrapper runtime-invoke) object:runtime_invoke_void (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.25332 28] ENTER: System.Math:Min (int,int)() ip: 70000000011c468
[1: 0.25340 28] LEAVE: System.Math:Min (int,int)result=58
converting method int System.Math:Max (int,int)
Method int System.Math:Max (int,int) emitted at 700000000122000 to 7000000001220bc (code length 188) [exception.exe]
[1: 0.25377 28] ENTER: System.Math:Max (int,int)() ip: 70000000011c494
[1: 0.25385 28] LEAVE: System.Math:Max (int,int)result=58
[1: 0.25394 28] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000011c4d0
[1: 0.25402 28] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Text.StringBuilder:700000000403ae0]
converting method void System.Text.StringBuilder:.ctor (System.Text.StringBuilder)
Method void System.Text.StringBuilder:.ctor (System.Text.StringBuilder) emitted at 7000000001220c0 to 700000000122278 (code length 440) [exception.exe]
[1: 0.25440 28] ENTER: System.Text.StringBuilder:.ctor (System.Text.StringBuilder)() ip: 70000000011c4fc
[1: 0.25448 28] LEAVE: System.Text.StringBuilder:.ctor (System.Text.StringBuilder)
[1: 0.25456 28] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000011c5cc
[1: 0.25465 28] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Char[]:700000000403b10]
[1: 0.25473 27] LEAVE: System.Text.StringBuilder:ExpandByABlock (int)
[1: 0.25481 26] LEAVE: System.Text.StringBuilder:Append (char,int)[System.Text.StringBuilder:700000000402de0]
[1: 0.25489 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25497 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25505 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25513 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25521 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25529 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25537 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25545 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25553 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25561 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25569 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25577 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25585 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25593 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.25601 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.25610 24] LEAVE: System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)[System.Text.StringBuilder:700000000402de0]
[1: 0.25618 24] ENTER: System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)() ip: 70000000008b994
[1: 0.25632 25] ENTER: System.Text.StringBuilder:ToString ()() ip: 700000000113ae0
[1: 0.25640 26] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000113cb0
[1: 0.25649 26] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:700000000403ba8]
[1: 0.25657 26] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000113dd0
[1: 0.25665 27] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.25673 28] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.25681 28] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.25688 27] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.25696 26] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.25704 26] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000113dd0
[1: 0.25712 27] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.25720 28] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.25728 28] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.25735 27] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.25743 26] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.25751 25] LEAVE: System.Text.StringBuilder:ToString ()[System.String:700000000403ba8]
[1: 0.25759 25] ENTER: System.Text.StringBuilderCache:Release (System.Text.StringBuilder)() ip: 700000000113b0c
[1: 0.25767 25] LEAVE: System.Text.StringBuilderCache:Release (System.Text.StringBuilder)
[1: 0.25775 24] LEAVE: System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)[System.String:700000000403ba8]
[1: 0.25784 23] LEAVE: string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)[System.String:700000000403ba8]
[1: 0.25792 22] LEAVE: string:Format (System.IFormatProvider,string,object[])[System.String:700000000403ba8]
[1: 0.25800 21] LEAVE: System.Environment:GetResourceString (string,object[])[System.String:700000000403ba8]
[1: 0.25809 21] ENTER: System.SystemException:.ctor (string,System.Exception)() ip: 700000000085560
[1: 0.25816 22] ENTER: System.Exception:.ctor (string,System.Exception)() ip: 700000000114424
[1: 0.25824 23] ENTER: System.Exception:Init ()() ip: 70000000011455c
[1: 0.25832 24] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.25840 24] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000403c48]
[1: 0.25848 23] LEAVE: System.Exception:Init ()
[1: 0.25856 22] LEAVE: System.Exception:.ctor (string,System.Exception)
[1: 0.25864 21] LEAVE: System.SystemException:.ctor (string,System.Exception)
[1: 0.25872 20] LEAVE: System.TypeInitializationException:.ctor (string,System.Exception)
[1: 0.25880 19] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.25891 19] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.25901 20] ENTER: System.TypeInitializationException:.ctor (string,System.Exception)() ip: 700000000085820
[1: 0.25915 21] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 7000000000854c8
[1: 0.25923 21] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Object[]:700000000403d40]
[1: 0.25931 21] ENTER: (wrapper stelemref) object:virt_stelemref_object (intptr,object)() ip: 7000000000854f4
[1: 0.25939 21] LEAVE: (wrapper stelemref) object:virt_stelemref_object (intptr,object)
[1: 0.25947 21] ENTER: System.Environment:GetResourceString (string,object[])() ip: 700000000085530
[1: 0.25955 22] ENTER: System.Globalization.CultureInfo:get_InvariantCulture ()() ip: 700000000085e98
[1: 0.25963 22] LEAVE: System.Globalization.CultureInfo:get_InvariantCulture ()[System.Globalization.CultureInfo:700000000400770]
[1: 0.25971 22] ENTER: string:Format (System.IFormatProvider,string,object[])() ip: 700000000085ec4
[1: 0.25979 23] ENTER: System.ParamsArray:.ctor (object[])() ip: 70000000008b2e0
[1: 0.25987 23] LEAVE: System.ParamsArray:.ctor (object[])
[1: 0.25995 23] ENTER: string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)() ip: 70000000008b33c
[1: 0.26003 24] ENTER: System.Text.StringBuilderCache:Acquire (int)() ip: 70000000008b904
[1: 0.26011 25] ENTER: System.Text.StringBuilder:Clear ()() ip: 70000000008bc68
[1: 0.26019 26] ENTER: System.Text.StringBuilder:set_Length (int)() ip: 70000000011bac4
converting method System.Text.StringBuilder System.Text.StringBuilder:FindChunkForIndex (int)
Method System.Text.StringBuilder System.Text.StringBuilder:FindChunkForIndex (int) emitted at 700000000122278 to 70000000012237c (code length 260) [exception.exe]
[1: 0.26055 27] ENTER: System.Text.StringBuilder:FindChunkForIndex (int)() ip: 70000000011bcc4
[1: 0.26063 27] LEAVE: System.Text.StringBuilder:FindChunkForIndex (int)[System.Text.StringBuilder:700000000403ae0]
[1: 0.26072 27] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 70000000011bd20
[1: 0.26080 27] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Char[]:700000000403d68]
converting method void System.Array:Copy (System.Array,System.Array,int)
Method void System.Array:Copy (System.Array,System.Array,int) emitted at 700000000122380 to 7000000001225fc (code length 636) [exception.exe]
[1: 0.26127 27] ENTER: System.Array:Copy (System.Array,System.Array,int)() ip: 70000000011bd64
converting method void System.Array:Copy (System.Array,int,System.Array,int,int)
Method void System.Array:Copy (System.Array,int,System.Array,int,int) emitted at 700000000122630 to 7000000001231b8 (code length 2952) [exception.exe]
[1: 0.26252 28] ENTER: System.Array:Copy (System.Array,int,System.Array,int,int)() ip: 700000000122474
converting method (wrapper managed-to-native) bool System.Array:FastCopy (System.Array,int,System.Array,int,int)
Method (wrapper managed-to-native) bool System.Array:FastCopy (System.Array,int,System.Array,int,int) emitted at 7000000001232a8 to 700000000123570 (code length 712) [exception.exe]
[1: 0.26290 29] ENTER: (wrapper managed-to-native) System.Array:FastCopy (System.Array,int,System.Array,int,int)() ip: 700000000122770
[1: 0.26299 29] LEAVE: (wrapper managed-to-native) System.Array:FastCopy (System.Array,int,System.Array,int,int)result=1
[1: 0.26307 28] LEAVE: System.Array:Copy (System.Array,int,System.Array,int,int)
[1: 0.26315 27] LEAVE: System.Array:Copy (System.Array,System.Array,int)
[1: 0.26323 26] LEAVE: System.Text.StringBuilder:set_Length (int)
[1: 0.26331 25] LEAVE: System.Text.StringBuilder:Clear ()[System.Text.StringBuilder:700000000402de0]
[1: 0.26339 24] LEAVE: System.Text.StringBuilderCache:Acquire (int)[System.Text.StringBuilder:700000000402de0]
[1: 0.26347 24] ENTER: System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)() ip: 70000000008b970
[1: 0.26356 25] ENTER: System.Globalization.CultureInfo:GetFormat (System.Type)() ip: 700000000111ab8
[1: 0.26364 25] LEAVE: System.Globalization.CultureInfo:GetFormat (System.Type)[OBJECT:0]
[1: 0.26371 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26379 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26388 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26395 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26404 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26412 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26420 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26428 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26436 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26444 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26452 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26460 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26468 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26476 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26484 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26492 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26500 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26508 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26516 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26524 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26532 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26540 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26548 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26556 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26564 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26572 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26580 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26588 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26596 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26604 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26612 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26620 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26628 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26636 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26645 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26653 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26661 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26669 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26677 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26685 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26693 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26701 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26709 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26717 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26725 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26733 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26741 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26749 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26757 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26765 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26773 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26781 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26789 25] ENTER: System.ParamsArray:get_Item (int)() ip: 70000000011237c
[1: 0.26804 25] LEAVE: System.ParamsArray:get_Item (int)[System.String:700000000403c80]
[1: 0.26812 25] ENTER: string:ToString ()() ip: 700000000112880
[1: 0.26820 25] LEAVE: string:ToString ()[System.String:700000000403c80]
[1: 0.26828 25] ENTER: System.Text.StringBuilder:Append (string)() ip: 700000000112924
[1: 0.26836 26] ENTER: string:wstrcpy (char*,char*,int)() ip: 70000000011343c
[1: 0.26843 27] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.26851 28] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.26859 28] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.26867 27] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.26875 26] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.26883 25] LEAVE: System.Text.StringBuilder:Append (string)[System.Text.StringBuilder:700000000402de0]
[1: 0.26891 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26899 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26907 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26915 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26923 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26931 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26939 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26947 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26955 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26963 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26972 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26980 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.26988 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.26996 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27004 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27012 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27020 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27028 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27036 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27044 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27052 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27060 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27068 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27076 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27084 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27093 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27101 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27109 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27117 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27125 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27133 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27141 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27149 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27157 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27165 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27173 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27181 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27189 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27197 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27205 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27213 25] ENTER: System.Text.StringBuilder:Append (char)() ip: 700000000111ce8
[1: 0.27221 25] LEAVE: System.Text.StringBuilder:Append (char)[System.Text.StringBuilder:700000000402de0]
[1: 0.27229 24] LEAVE: System.Text.StringBuilder:AppendFormatHelper (System.IFormatProvider,string,System.ParamsArray)[System.Text.StringBuilder:700000000402de0]
[1: 0.27238 24] ENTER: System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)() ip: 70000000008b994
[1: 0.27246 25] ENTER: System.Text.StringBuilder:ToString ()() ip: 700000000113ae0
[1: 0.27254 26] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000113cb0
[1: 0.27262 26] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:700000000403e70]
[1: 0.27270 26] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000113dd0
[1: 0.27278 27] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.27286 28] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.27293 28] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.27301 27] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.27309 26] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.27317 25] LEAVE: System.Text.StringBuilder:ToString ()[System.String:700000000403e70]
[1: 0.27325 25] ENTER: System.Text.StringBuilderCache:Release (System.Text.StringBuilder)() ip: 700000000113b0c
[1: 0.27333 25] LEAVE: System.Text.StringBuilderCache:Release (System.Text.StringBuilder)
[1: 0.27341 24] LEAVE: System.Text.StringBuilderCache:GetStringAndRelease (System.Text.StringBuilder)[System.String:700000000403e70]
[1: 0.27350 23] LEAVE: string:FormatHelper (System.IFormatProvider,string,System.ParamsArray)[System.String:700000000403e70]
[1: 0.27358 22] LEAVE: string:Format (System.IFormatProvider,string,object[])[System.String:700000000403e70]
[1: 0.27366 21] LEAVE: System.Environment:GetResourceString (string,object[])[System.String:700000000403e70]
[1: 0.27375 21] ENTER: System.SystemException:.ctor (string,System.Exception)() ip: 700000000085560
[1: 0.27382 22] ENTER: System.Exception:.ctor (string,System.Exception)() ip: 700000000114424
[1: 0.27390 23] ENTER: System.Exception:Init ()() ip: 70000000011455c
[1: 0.27398 24] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 7000000000842a8
[1: 0.27406 24] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Runtime.Serialization.SafeSerializationManager:700000000403f00]
[1: 0.27414 23] LEAVE: System.Exception:Init ()
[1: 0.27422 22] LEAVE: System.Exception:.ctor (string,System.Exception)
[1: 0.27430 21] LEAVE: System.SystemException:.ctor (string,System.Exception)
[1: 0.27438 20] LEAVE: System.TypeInitializationException:.ctor (string,System.Exception)
[1: 0.27447 19] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_void__this___object_object (object,intptr,intptr,intptr)[OBJECT:0]
[1: 0.27456 19] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.27464 20] ENTER: System.Exception:get_Message ()() ip: 7000000000852e0
[1: 0.27472 20] LEAVE: System.Exception:get_Message ()[System.String:700000000403e70]
[1: 0.27480 19] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[System.String:700000000403e70]
[1:] EXCEPTION handling: System.TypeInitializationException: The type initializer for 'System.Type' threw an exception.
EXCEPTION: catch found at clause 0 of (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)
[1: 0.27514 18] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[OBJECT:0]
Unhandled Exception:
Nested exception detected.
Original Exception: at Entry.Main () [0x00000] in <59f53618e91349c388e3e2bc22135e36>:0
Nested exception:at System.RuntimeType.GetBaseType () [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.RuntimeType.IsSubclassOf (System.Type) [0x00026] in <ed20377020504649863303af004d6a67>:0
at System.Attribute.IsDefined (System.Reflection.MemberInfo,System.Type,bool) [0x0002e] in <ed20377020504649863303af004d6a67>:0
at System.Attribute.IsDefined (System.Reflection.MemberInfo,System.Type) [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.Reflection.CustomAttributeExtensions.IsDefined (System.Reflection.MemberInfo,System.Type) [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.GetFullNameForStackTrace (System.Text.StringBuilder,System.Reflection.MethodBase,bool,bool&) [0x0005e] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.AddFrames (System.Text.StringBuilder) [0x00089] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.ToString () [0x00065] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.ToString (System.Diagnostics.StackTrace/TraceFormat) [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.Environment.GetStackTrace (System.Exception,bool) [0x0001a] in <ed20377020504649863303af004d6a67>:0
at System.Exception.GetStackTrace (bool) [0x00041] in <ed20377020504649863303af004d6a67>:0
at System.Exception.ToString (bool,bool) [0x00093] in <ed20377020504649863303af004d6a67>:0
at System.Exception.ToString (bool,bool) [0x0004e] in <ed20377020504649863303af004d6a67>:0
at System.Exception.ToString () [0x00000] in <ed20377020504649863303af004d6a67>:0
[1: 0.28908 18] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.28917 19] ENTER: System.Exception:ToString ()() ip: 7000000000852e0
[1: 0.28924 20] ENTER: System.Exception:ToString (bool,bool)() ip: 7000000001146e0
[1: 0.28932 21] ENTER: System.Exception:get_Message ()() ip: 7000000001147ec
[1: 0.28940 21] LEAVE: System.Exception:get_Message ()[System.String:700000000402ea8]
[1: 0.28948 21] ENTER: System.Exception:GetClassName ()() ip: 700000000114874
[1: 0.28956 21] LEAVE: System.Exception:GetClassName ()[System.String:700000000403090]
[1: 0.28964 21] ENTER: string:Concat (string,string,string)() ip: 7000000001148b0
[1: 0.28972 22] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000115948
[1: 0.28980 22] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:700000000404170]
[1: 0.28989 22] ENTER: string:FillStringChecked (string,int,string)() ip: 70000000011597c
[1: 0.28996 23] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.29004 24] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.29012 25] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.29020 25] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.29028 24] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.29035 23] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.29043 22] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.29051 22] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159b4
[1: 0.29059 23] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.29067 24] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.29075 25] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.29082 25] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.29091 24] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.29099 23] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.29107 22] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.29115 22] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159fc
[1: 0.29123 23] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.29130 24] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.29138 25] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.29146 25] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.29154 24] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.29162 23] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.29170 22] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.29178 21] LEAVE: string:Concat (string,string,string)[System.String:700000000404170]
[1: 0.29186 21] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000114900
[1: 0.29194 21] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.String[]:700000000404240]
[1: 0.29202 21] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000011492c
[1: 0.29210 21] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.29218 21] ENTER: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)() ip: 70000000011496c
[1: 0.29226 21] LEAVE: (wrapper stelemref) object:virt_stelemref_sealed_class (intptr,object)
[1: 0.29234 21] ENTER: System.Exception:ToString (bool,bool)() ip: 7000000001149bc
[1: 0.29242 22] ENTER: System.Exception:get_Message ()() ip: 7000000001147ec
[1: 0.29250 22] LEAVE: System.Exception:get_Message ()[System.String:7000000000ec130]
[1: 0.29258 22] ENTER: System.Exception:GetClassName ()() ip: 700000000114874
[1: 0.29266 22] LEAVE: System.Exception:GetClassName ()[System.String:700000000403210]
[1: 0.29274 22] ENTER: string:Concat (string,string,string)() ip: 7000000001148b0
[1: 0.29282 23] ENTER: (wrapper managed-to-native) string:FastAllocateString (int)() ip: 700000000115948
[1: 0.29290 23] LEAVE: (wrapper managed-to-native) string:FastAllocateString (int)[System.String:700000000404290]
[1: 0.29298 23] ENTER: string:FillStringChecked (string,int,string)() ip: 70000000011597c
[1: 0.29306 24] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.29314 25] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.29322 26] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.29329 26] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.29337 25] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.29345 24] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.29353 23] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.29361 23] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159b4
[1: 0.29369 24] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.29376 25] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.29384 26] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.29392 26] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.29400 25] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.29414 24] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.29422 23] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.29430 23] ENTER: string:FillStringChecked (string,int,string)() ip: 7000000001159fc
[1: 0.29438 24] ENTER: string:wstrcpy (char*,char*,int)() ip: 700000000115bb0
[1: 0.29445 25] ENTER: System.Buffer:Memcpy (byte*,byte*,int)() ip: 70000000011360c
[1: 0.29453 26] ENTER: System.Buffer:memcpy4 (byte*,byte*,int)() ip: 70000000011384c
[1: 0.29461 26] LEAVE: System.Buffer:memcpy4 (byte*,byte*,int)
[1: 0.29469 25] LEAVE: System.Buffer:Memcpy (byte*,byte*,int)
[1: 0.29477 24] LEAVE: string:wstrcpy (char*,char*,int)
[1: 0.29485 23] LEAVE: string:FillStringChecked (string,int,string)
[1: 0.29492 22] LEAVE: string:Concat (string,string,string)[System.String:700000000404290]
[1: 0.29515 22] ENTER: System.Exception:GetStackTrace (bool)() ip: 700000000114b14
[1: 0.29523 23] ENTER: System.Environment:GetStackTrace (System.Exception,bool)() ip: 700000000115da4
[1: 0.29531 24] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 700000000115fc4
[1: 0.29539 24] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Diagnostics.StackTrace:7000000004042d8]
[1: 0.29547 24] ENTER: System.Diagnostics.StackTrace:.ctor (System.Exception,bool)() ip: 700000000115ff4
[1: 0.29555 25] ENTER: System.Diagnostics.StackTrace:.ctor (System.Exception,int,bool)() ip: 7000000001161cc
[1: 0.29563 26] ENTER: (wrapper managed-to-native) System.Diagnostics.StackTrace:get_trace (System.Exception,int,bool)() ip: 7000000001162e4
[1: 0.29572 26] LEAVE: (wrapper managed-to-native) System.Diagnostics.StackTrace:get_trace (System.Exception,int,bool)[System.Diagnostics.StackFrame[]:700000000404300]
[1: 0.29580 25] LEAVE: System.Diagnostics.StackTrace:.ctor (System.Exception,int,bool)
[1: 0.29589 24] LEAVE: System.Diagnostics.StackTrace:.ctor (System.Exception,bool)
[1: 0.29596 24] ENTER: System.Diagnostics.StackTrace:ToString (System.Diagnostics.StackTrace/TraceFormat)() ip: 700000000116030
[1: 0.29605 25] ENTER: System.Diagnostics.StackTrace:ToString ()() ip: 700000000116884
[1: 0.29613 26] ENTER: (wrapper alloc) object:AllocSmall (intptr,intptr)() ip: 70000000011699c
[1: 0.29621 26] LEAVE: (wrapper alloc) object:AllocSmall (intptr,intptr)[System.Text.StringBuilder:700000000404370]
[1: 0.29629 26] ENTER: System.Text.StringBuilder:.ctor ()() ip: 7000000001169c4
[1: 0.29637 27] ENTER: System.Text.StringBuilder:.ctor (int)() ip: 700000000116d24
[1: 0.29645 28] ENTER: System.Text.StringBuilder:.ctor (string,int)() ip: 70000000008be4c
[1: 0.29653 29] ENTER: System.Text.StringBuilder:.ctor (string,int,int,int)() ip: 70000000008bf7c
[1: 0.29661 30] ENTER: (wrapper alloc) object:AllocVector (intptr,intptr)() ip: 700000000111158
[1: 0.29669 30] LEAVE: (wrapper alloc) object:AllocVector (intptr,intptr)[System.Char[]:7000000004043a0]
[1: 0.29677 30] ENTER: System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)() ip: 7000000001111fc
[1: 0.29685 30] LEAVE: System.Text.StringBuilder:ThreadSafeCopy (char*,char[],int,int)
[1: 0.29694 29] LEAVE: System.Text.StringBuilder:.ctor (string,int,int,int)
[1: 0.29701 28] LEAVE: System.Text.StringBuilder:.ctor (string,int)
[1: 0.29709 27] LEAVE: System.Text.StringBuilder:.ctor (int)
[1: 0.29717 26] LEAVE: System.Text.StringBuilder:.ctor ()
[1: 0.29725 26] ENTER: System.Diagnostics.StackTrace:AddFrames (System.Text.StringBuilder)() ip: 700000000116b9c
[1: 0.29733 27] ENTER: System.Diagnostics.StackTrace:get_FrameCount ()() ip: 70000000011765c
[1: 0.29741 27] LEAVE: System.Diagnostics.StackTrace:get_FrameCount ()result=1
[1: 0.29749 27] ENTER: System.Diagnostics.StackTrace:GetFrame (int)() ip: 700000000116e2c
[1: 0.29757 28] ENTER: System.Diagnostics.StackTrace:get_FrameCount ()() ip: 700000000117a6c
[1: 0.29765 28] LEAVE: System.Diagnostics.StackTrace:get_FrameCount ()result=1
[1: 0.29773 27] LEAVE: System.Diagnostics.StackTrace:GetFrame (int)[System.Diagnostics.StackFrame:700000000404328]
[1: 0.29781 27] ENTER: System.Diagnostics.StackFrame:GetMethod ()() ip: 700000000116e50
[1: 0.29789 27] LEAVE: System.Diagnostics.StackFrame:GetMethod ()[System.Reflection.MonoCMethod:700000000403328]
[1: 0.29797 27] ENTER: System.Reflection.MethodBase:op_Equality (System.Reflection.MethodBase,System.Reflection.MethodBase)() ip: 700000000116e78
[1: 0.29806 27] LEAVE: System.Reflection.MethodBase:op_Equality (System.Reflection.MethodBase,System.Reflection.MethodBase)result=0
[1: 0.29814 27] ENTER: System.Diagnostics.StackFrame:GetMethod ()() ip: 7000000001170a8
[1: 0.29822 27] LEAVE: System.Diagnostics.StackFrame:GetMethod ()[System.Reflection.MonoCMethod:700000000403328]
[1: 0.29830 27] ENTER: System.Diagnostics.StackTrace:GetFullNameForStackTrace (System.Text.StringBuilder,System.Reflection.MethodBase,bool,bool&)() ip: 7000000001170e0
[1: 0.29838 28] ENTER: System.Reflection.MonoCMethod:get_DeclaringType ()() ip: 7000000001180d4
[1: 0.29846 29] ENTER: System.Reflection.MonoMethodInfo:GetDeclaringType (intptr)() ip: 700000000118b54
[1: 0.29854 30] ENTER: System.Reflection.MonoMethodInfo:GetMethodInfo (intptr)() ip: 700000000118c90
[1: 0.29862 31] ENTER: (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&)() ip: 700000000118da4
[1: 0.29870 32] ENTER: string:memset (byte*,int,int)() ip: 700000000119054
[1: 0.29878 32] LEAVE: string:memset (byte*,int,int)
[1: 0.29886 31] LEAVE: (wrapper managed-to-native) System.Reflection.MonoMethodInfo:get_method_info (intptr,System.Reflection.MonoMethodInfo&)
[1: 0.29895 30] LEAVE: System.Reflection.MonoMethodInfo:GetMethodInfo (intptr)[00,00,00,01,00,00,00,00,00,00,00,01,10,34,86,00,07,00,00,00,00,40,43,70,0f,ff,ff,ff,ff,ff,dc,30,]
[1: 0.29907 29] LEAVE: System.Reflection.MonoMethodInfo:GetDeclaringType (intptr)[System.RuntimeType:7000000001085e0]
[1: 0.29915 28] LEAVE: System.Reflection.MonoCMethod:get_DeclaringType ()[System.RuntimeType:7000000001085e0]
[1: 0.29923 28] ENTER: System.RuntimeType:get_IsGenericType ()() ip: 7000000001180f8
[1: 0.29931 29] ENTER: (wrapper managed-to-native) System.RuntimeTypeHandle:HasInstantiation (System.RuntimeType)() ip: 7000000001192a0
[1: 0.29939 30] ENTER: string:memset (byte*,int,int)() ip: 7000000001194a0
[1: 0.29947 30] LEAVE: string:memset (byte*,int,int)
[1: 0.29955 29] LEAVE: (wrapper managed-to-native) System.RuntimeTypeHandle:HasInstantiation (System.RuntimeType)result=0
[1: 0.29963 28] LEAVE: System.RuntimeType:get_IsGenericType ()result=0
[1: 0.29971 28] ENTER: System.Reflection.CustomAttributeExtensions:IsDefined (System.Reflection.MemberInfo,System.Type)() ip: 700000000118250
[1: 0.29979 29] ENTER: System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type)() ip: 700000000119718
[1: 0.29988 30] ENTER: System.Attribute:IsDefined (System.Reflection.MemberInfo,System.Type,bool)() ip: 700000000119814
[1: 0.29996 31] ENTER: System.Reflection.MemberInfo:op_Equality (System.Reflection.MemberInfo,System.Reflection.MemberInfo)() ip: 700000000119920
[1: 0.30004 31] LEAVE: System.Reflection.MemberInfo:op_Equality (System.Reflection.MemberInfo,System.Reflection.MemberInfo)result=0
[1: 0.30012 31] ENTER: System.RuntimeType:IsSubclassOf (System.Type)() ip: 700000000119974
[1: 0.30020 32] ENTER: System.RuntimeType:GetBaseType ()() ip: 70000000011a6b0
[1: 0.30031 33] ENTER: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)() ip: 9000000074148a8
[1: 0.30039 34] ENTER: System.Exception:get_Message ()() ip: 7000000000852e0
[1: 0.30047 34] LEAVE: System.Exception:get_Message ()[System.String:700000000403e70]
[1: 0.30055 33] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[System.String:700000000403e70]
[1:] EXCEPTION handling: System.TypeInitializationException: The type initializer for 'System.Type' threw an exception.
EXCEPTION: catch found at clause 0 of (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)
[1: 0.30087 32] LEAVE: (wrapper runtime-invoke) <Module>:runtime_invoke_object__this__ (object,intptr,intptr,intptr)[OBJECT:0]
[ERROR] FATAL UNHANDLED EXCEPTION: Nested exception detected.
Original Exception: at Entry.Main () [0x00000] in <59f53618e91349c388e3e2bc22135e36>:0
Nested exception:at System.RuntimeType.GetBaseType () [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.RuntimeType.IsSubclassOf (System.Type) [0x00026] in <ed20377020504649863303af004d6a67>:0
at System.Attribute.IsDefined (System.Reflection.MemberInfo,System.Type,bool) [0x0002e] in <ed20377020504649863303af004d6a67>:0
at System.Attribute.IsDefined (System.Reflection.MemberInfo,System.Type) [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.Reflection.CustomAttributeExtensions.IsDefined (System.Reflection.MemberInfo,System.Type) [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.GetFullNameForStackTrace (System.Text.StringBuilder,System.Reflection.MethodBase,bool,bool&) [0x0005e] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.AddFrames (System.Text.StringBuilder) [0x00089] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.ToString () [0x00065] in <ed20377020504649863303af004d6a67>:0
at System.Diagnostics.StackTrace.ToString (System.Diagnostics.StackTrace/TraceFormat) [0x00000] in <ed20377020504649863303af004d6a67>:0
at System.Environment.GetStackTrace (System.Exception,bool) [0x0001a] in <ed20377020504649863303af004d6a67>:0
at System.Exception.GetStackTrace (bool) [0x00041] in <ed20377020504649863303af004d6a67>:0
at System.Exception.ToString (bool,bool) [0x00093] in <ed20377020504649863303af004d6a67>:0
at System.Exception.ToString (bool,bool) [0x0004e] in <ed20377020504649863303af004d6a67>:0
at System.Exception.ToString () [0x00000] in <ed20377020504649863303af004d6a67>:0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment