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