cmake/Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs

17 lines
339 B
C#
Raw Normal View History

2018-08-09 18:06:22 +02:00
using System;
using CSharpLibrary;
namespace CSharpLinkFromCxx
{
internal class CSharpLinkFromCxx
{
public static void Main(string[] args)
{
Console.WriteLine("Starting test for CSharpLinkFromCxx");
var useful = new UsefulManagedCppClass();
useful.RunTest();
}
}
}