[]
Represents the details of a match.
public sealed class MatchDetails : IEquatable<MatchDetails>
Gets the found Capture.
public Capture Capture { get; }
Gets the found Group.
public Group Group { get; }
Gets the Match object that contains all groups and captures.
public Match Match { get; }
public bool Equals(MatchDetails rhs)
rhs
MatchDetailspublic override bool Equals(object rhs)
rhs
objectpublic override int GetHashCode()
Tests whether two specified MatchDetails objects are equivalent.
public static bool operator ==(MatchDetails lhs, MatchDetails rhs)
lhs
MatchDetailsrhs
MatchDetailsTests whether two specified MatchDetails objects are equivalent.
public static bool operator !=(MatchDetails lhs, MatchDetails rhs)
lhs
MatchDetailsrhs
MatchDetails