2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Better error handlingfor examples

This commit is contained in:
ChrisDill 2018-10-25 12:29:10 +01:00
parent 21e4a18b84
commit f7ab1fbd7a

View File

@ -1,6 +1,8 @@
using System; using System;
using System.IO; using System.IO;
using static Raylib.Raylib; using static Raylib.Raylib;
using System.Reflection;
using System.Runtime.InteropServices;
namespace Examples namespace Examples
{ {
@ -32,12 +34,20 @@ namespace Examples
var filePath = Console.ReadLine(); var filePath = Console.ReadLine();
var name = Path.GetFileNameWithoutExtension(filePath); var name = Path.GetFileNameWithoutExtension(filePath);
var dir = examples + filePath + ".cs"; var dir = examples + filePath + ".cs";
// run example if it exists // run example if it exists
if (File.Exists(dir)) if (File.Exists(dir))
{ {
ChangeDirectory(Path.GetDirectoryName(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(); Console.WriteLine();
} }
else else