dotnet-installer/test/TestLibrary/Helper.cs
2015-11-01 21:08:01 -08:00

12 lines
211 B
C#

using System;
namespace TestLibrary
{
public static class Helper
{
public static string GetMessage()
{
return "This string came from the test library!";
}
}
}