Files
1440WGJ/SimpleServer/CommonHelper.cs
T
2026-07-14 13:55:17 +08:00

14 lines
237 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SimpleCommunication
{
public delegate void DlgOneParam<T>(T param);
public delegate void DlgNoParam();
public class CommonHelper
{
}
}