From f7ab1fbd7a09bdc4f4e5f9a46330b4ee68db99ca Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 25 Oct 2018 12:29:10 +0100 Subject: [PATCH] Better error handlingfor examples --- Examples/Test.cs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Examples/Test.cs b/Examples/Test.cs index 21fda35..9b27321 100644 --- a/Examples/Test.cs +++ b/Examples/Test.cs @@ -1,6 +1,8 @@ using System; using System.IO; using static Raylib.Raylib; +using System.Reflection; +using System.Runtime.InteropServices; namespace Examples { @@ -32,12 +34,20 @@ namespace Examples var filePath = Console.ReadLine(); var name = Path.GetFileNameWithoutExtension(filePath); var dir = examples + filePath + ".cs"; - + // run example if it exists if (File.Exists(dir)) { ChangeDirectory(Path.GetDirectoryName(dir)); - Type.GetType(name)?.GetMethod("Main")?.Invoke(null, args); + try + { + Type.GetType(name)?.GetMethod("Main")?.Invoke(null, args); + } + catch(TargetInvocationException e) + { + Console.WriteLine(e.InnerException.Message); + Console.WriteLine(e.InnerException.StackTrace); + } Console.WriteLine(); } else