WikiFunctions.Parse.HideText.Replace C# (CSharp) Method

Replace() private method

Puts back hidden text
private Replace ( IEnumerable matches, string &articleText ) : void
matches IEnumerable
articleText string The wiki text of the article.
return void
        private void Replace(IEnumerable matches, ref string articleText)
        {
            Replace(matches, ref articleText, HiddenTokens);
        }

Same methods

HideText::Replace ( IEnumerable matches, string &articleText, List Tokens ) : void