blob: 31a74ebf6ccb38afb55a336b786ac9ee11073605 [file] [log] [blame]
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();
}
}
}