Path: blob/master/Tests/CSharpLinkFromCxx/UsefulCSharpClass.cs
5012 views
using System;
namespace CSharpLibrary
{
public class UsefulCSharpClass
{
public string GetSomethingUseful()
{
return "Something Useful";
}
}
}