Beispiel #1
0
 private static void Runtime_MemoryChanging(object sender, JavaScriptMemoryAllocationEventArgs e)
 {
     Console.WriteLine($"Allocation/Change: {e.Type} :: {e.Amount}");
 }
 private void Runtime__MemoryChanging(object sender, JavaScriptMemoryAllocationEventArgs e)
 {
     Debug.WriteLine(string.Format("{0}: {1:x}", e.Type, e.Amount));
     Assert.IsTrue(true, "run to completion is good!");
 }
 private void Runtime__MemoryChanging(object sender, JavaScriptMemoryAllocationEventArgs e)
 {
     Log.Message(string.Format("{0}: {1:x}", e.Type, e.Amount));
     Assert.Succeeded();
 }
Beispiel #4
0
 private void Rt_MemoryChanging(object sender, JavaScriptMemoryAllocationEventArgs e)
 {
     System.Diagnostics.Debugger.Log(0, "Log", $"Allocation/Change: {e.Type} :: {e.Amount}");
 }