14 lines
230 B
C#
14 lines
230 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SimpleServer
|
|
{
|
|
public delegate void DlgOneParam<T>(T param);
|
|
public delegate void DlgNoParam();
|
|
|
|
public class CommonHelper
|
|
{
|
|
}
|
|
}
|