Alsing.Text.MatchResult.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            if (Found == false)
                return "no match"; // do not localize

            if (Tags != null)
                return Tags + "  " + Index + "  " + Length;

            return "MatchResult";
        }