陈斌彬的技术博客

Stay foolish,stay hungry

MatchEvaluator

using System;

namespace System.Text.RegularExpressions
{
    // 摘要:
    //     表示在 Overload:System.Text.RegularExpressions.Regex.Replace 方法操作过程中每当找到正则表达式匹配时都调用的方法。
    //
    // 参数:
    //   match:
    //     System.Text.RegularExpressions.Match 对象,表示 Overload:System.Text.RegularExpressions.Regex.Replace
    //     方法操作过程中的单个正则表达式匹配。
    //
    // 返回结果:
    //     由 System.Text.RegularExpressions.MatchEvaluator 委托表示的方法返回的字符串。
    [Serializable]
    public delegate string MatchEvaluator(Match match);
}