LoadDll/加载dll/Program.cs

11 lines
174 B
C#
Raw Normal View History

2023-02-28 11:03:34 +08:00
namespace dll
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}