13 lines
209 B
C#
13 lines
209 B
C#
|
using System;
|
||
|
|
||
|
namespace ConsoleApplication
|
||
|
{
|
||
|
public class HelperBuiltIn1
|
||
|
{
|
||
|
public static string GetMessage()
|
||
|
{
|
||
|
return "Hello from HelperBuiltIn1 class!";
|
||
|
}
|
||
|
}
|
||
|
}
|