diff --git a/source/GeramysTest/Kernel.cs b/source/GeramysTest/Kernel.cs index 038fa59dc..8197bbceb 100644 --- a/source/GeramysTest/Kernel.cs +++ b/source/GeramysTest/Kernel.cs @@ -15,7 +15,12 @@ namespace GeramysTest protected override void Run() { Console.Write("Input: "); - var input = Console.ReadLine(); + string input = Console.ReadLine(); + int i = 0; + i++; + i++; + string test = "something"; + test += ", me."; Console.Write("Text typed: "); Console.WriteLine(input); } diff --git a/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs b/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs index 811fbc971..d4af3a860 100644 --- a/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs +++ b/source2/VSIP/Cosmos.VS.Windows/DebuggerUC.cs @@ -10,9 +10,9 @@ namespace Cosmos.VS.Windows { protected byte[] mData = new byte[0]; public void Update(string aTag, byte[] aData) { + mData = aData; Dispatcher.Invoke(DispatcherPriority.Normal, (Action)delegate() { - mData = aData; DoUpdate(aTag); } );