mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
- Minor fix in Raylib.cs - Updated Test.NetFX for better debugging of examples.
53 lines
1.4 KiB
C#
53 lines
1.4 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
using System.Windows.Forms;
|
|
using Raylib;
|
|
using static Raylib.Raylib;
|
|
|
|
namespace Test.NetFX
|
|
{
|
|
class Program
|
|
{
|
|
[STAThread]
|
|
static void Main(string[] args)
|
|
{
|
|
Console.WriteLine("Welcome to raylib-cs!");
|
|
|
|
var dir = Environment.CurrentDirectory + "../../../Examples";
|
|
while (true)
|
|
{
|
|
var ofd = new OpenFileDialog
|
|
{
|
|
Filter = @"C#|*.cs",
|
|
Title = @"Select raylib example",
|
|
InitialDirectory = dir
|
|
};
|
|
|
|
if (ofd.ShowDialog() != DialogResult.OK)
|
|
return;
|
|
|
|
var test = Path.GetFileNameWithoutExtension(ofd.FileName);
|
|
Console.WriteLine("Running example " + test + "...");
|
|
|
|
ChangeDirectory(Path.GetDirectoryName(ofd.FileName));
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|
|
}
|