12 lines
211 B
C#
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!";
|
|
}
|
|
}
|
|
}
|