mirror of
https://github.com/WithSecureLabs/dotnet-gargoyle
synced 2026-06-21 13:46:26 +00:00
17 lines
301 B
C#
17 lines
301 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DemoAssembly
|
|
{
|
|
public class DemoClass
|
|
{
|
|
public static string HelloWorld()
|
|
{
|
|
return "Hello World from DemoAssembly!";
|
|
}
|
|
}
|
|
}
|