You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
653 B
C#
27 lines
653 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Mesnac.Maths
|
|
{
|
|
public interface IMath
|
|
{
|
|
/// <summary>
|
|
/// 函数名称,不能重复
|
|
/// </summary>
|
|
string Name { get; }
|
|
/// <summary>
|
|
/// 函数说明
|
|
/// </summary>
|
|
string Caption { get; }
|
|
/// <summary>
|
|
/// 执行函数
|
|
/// </summary>
|
|
/// <param name="parameters">参数</param>
|
|
/// <param name="buff">需要处理的值</param>
|
|
/// <returns>返回值</returns>
|
|
object Execute(string[] parameters, object[] buff);
|
|
}
|
|
}
|