17 lines
339 B
C#
17 lines
339 B
C#
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();
|
|
}
|
|
}
|
|
}
|