13 lines
211 B
C#
13 lines
211 B
C#
|
using System;
|
|||
|
|
|||
|
namespace TestLibrary
|
|||
|
{
|
|||
|
public static class Helper
|
|||
|
{
|
|||
|
public static string GetMessage()
|
|||
|
{
|
|||
|
return "This string came from the test library!";
|
|||
|
}
|
|||
|
}
|
|||
|
}
|