cmake/Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs

13 lines
192 B
C#
Raw Normal View History

2018-08-09 18:06:22 +02:00
using System;
namespace CSharpLibrary
{
public class UsefulCSharpClass
{
public string GetSomethingUseful()
{
return "Something Useful";
}
}
}