From 0727eda0bf2609c66c1e4aee2ed6218463fe8c18 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Tue, 23 Oct 2018 12:38:34 +0100 Subject: [PATCH] Working on example fixes - Minor fix in Raylib.cs - Updated Test.NetFX for better debugging of examples. --- Bindings/Raylib.cs | 6 +++--- Test.NetFX/Program.cs | 16 +++++++++++++++- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/Bindings/Raylib.cs b/Bindings/Raylib.cs index dd694c0..b9c56e2 100644 --- a/Bindings/Raylib.cs +++ b/Bindings/Raylib.cs @@ -1354,7 +1354,7 @@ namespace Raylib [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern int GetTouchPointsCount(); - // Get gesture hold time in milliseconds + // Get gesture hold time in milliseconds [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern float GetGestureHoldDuration(); @@ -2396,7 +2396,7 @@ namespace Raylib // Set pitch for audio stream (1.0 is base level) [DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); - - #endregion + + #endregion } } diff --git a/Test.NetFX/Program.cs b/Test.NetFX/Program.cs index 16f2ef4..81471c1 100644 --- a/Test.NetFX/Program.cs +++ b/Test.NetFX/Program.cs @@ -1,5 +1,6 @@ using System; using System.IO; +using System.Reflection; using System.Windows.Forms; using Raylib; using static Raylib.Raylib; @@ -30,7 +31,20 @@ namespace Test.NetFX Console.WriteLine("Running example " + test + "..."); ChangeDirectory(Path.GetDirectoryName(ofd.FileName)); - Type.GetType(test)?.GetMethod("Main")?.Invoke(null, args); + + var call = Type.GetType(test)?.GetMethod("Main"); + + try + { + call?.Invoke(null, args); + } + catch (TargetInvocationException ex) + { + Console.WriteLine(ex.Message); + Console.WriteLine(ex.InnerException.Message); + Console.ReadLine(); + } + Console.WriteLine(); } }