swh:1:snp:3cba5856b0ddc3feab6c3c2d096d614b02c883ec
Raw File
Tip revision: f478fa633daeb1432805821adddc40730ffd283d authored by Brad King on 07 September 2018, 10:40:49 UTC
CMake 3.12.2
Tip revision: f478fa6
CSharpLinkFromCxx.cs
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();
        }
    }
}
back to top