14 lines
237 B
C#
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
|
|
{
|
|
}
|
|
}
|