using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
///
///
///
public class CallbackBsae
{
///
///
///
private event Action execmsg;
///
///
///
///
public void invoke(string msg)
{
Action ExecMsgT = execmsg;
if (ExecMsgT != null)
{
ExecMsgT(msg);
}
else
{
}
}
}