Files
Dec2017-Script-Dump/System/Text/RegularExpressions/MatchEvaluator.cs
T
2026-06-04 11:42:34 +02:00

13 lines
808 B
C#

using System;
namespace System.Text.RegularExpressions
{
/// <summary>Represents the method that is called each time a regular expression match is found during a <see cref="Overload:System.Text.RegularExpressions.Regex.Replace" /> method operation.</summary>
/// <returns>A string returned by the method that is represented by the <see cref="T:System.Text.RegularExpressions.MatchEvaluator" /> delegate.</returns>
/// <param name="match">The <see cref="T:System.Text.RegularExpressions.Match" /> object that represents a single regular expression match during a <see cref="Overload:System.Text.RegularExpressions.Regex.Replace" /> method operation. </param>
// Token: 0x02000340 RID: 832
// (Invoke) Token: 0x06001CD9 RID: 7385
[Serializable]
public delegate string MatchEvaluator(Match match);
}