summaryrefslogtreecommitdiff
path: root/Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs')
-rw-r--r--Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs b/Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs
new file mode 100644
index 000000000..31a74ebf6
--- /dev/null
+++ b/Tests/CSharpLinkFromCxx/CSharpLinkFromCxx.cs
@@ -0,0 +1,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();
+ }
+ }
+}