5aded80a7b
* WIP * Implement Remove attribute * Enable tests * Fix test * Try a shorter test name * Try more shortened test names * Shorten some more * Merge issues * Try shortinging names more * Fix test errors related to test asset renaming
12 lines
209 B
C#
12 lines
209 B
C#
using System;
|
|
|
|
namespace ConsoleApplication
|
|
{
|
|
public class HelperBuiltIn1
|
|
{
|
|
public static string GetMessage()
|
|
{
|
|
return "Hello from HelperBuiltIn1 class!";
|
|
}
|
|
}
|
|
}
|