summaryrefslogtreecommitdiff
path: root/Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs')
-rw-r--r--Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs b/Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs
new file mode 100644
index 000000000..749e57dc2
--- /dev/null
+++ b/Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace CSharpLibrary
+{
+ public class UsefulCSharpClass
+ {
+ public string GetSomethingUseful()
+ {
+ return "Something Useful";
+ }
+ }
+}