summaryrefslogtreecommitdiff
path: root/Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs
blob: 31a74ebf6ccb38afb55a336b786ac9ee11073605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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();
        }
    }
}