dotnet-installer/test/TestLibrary/Helper.cs

13 lines
211 B
C#
Raw Normal View History

2015-11-02 00:21:10 +00:00
using System;
namespace TestLibrary
{
public static class Helper
{
public static string GetMessage()
{
return "This string came from the test library!";
}
}
}