using System; namespace System.Text.RegularExpressions { /// Represents the method that is called each time a regular expression match is found during a method operation. /// A string returned by the method that is represented by the delegate. /// The object that represents a single regular expression match during a method operation. // Token: 0x02000340 RID: 832 // (Invoke) Token: 0x06001CD9 RID: 7385 [Serializable] public delegate string MatchEvaluator(Match match); }