using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Mesnac.Maths
{
public interface IMath
{
///
/// 函数名称,不能重复
///
string Name { get; }
///
/// 函数说明
///
string Caption { get; }
///
/// 执行函数
///
/// 参数
/// 需要处理的值
/// 返回值
object Execute(string[] parameters, object[] buff);
}
}