15 lines
395 B
C#
15 lines
395 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Study.DelegateSeries.Core
|
|
{
|
|
/// <summary>
|
|
/// 计算器:计算委托
|
|
/// </summary>
|
|
/// <param name="numberA">参数A</param>
|
|
/// <param name="numberB">参数B</param>
|
|
/// <returns>计算结果</returns>
|
|
public delegate decimal CalculatorDelegate(decimal numberA, decimal numberB);
|
|
}
|