예제 #1
0
 /// @brief Concatenate a string to the end of a string
 ///
 private void AddDataToBuffer(ref BUFFER buffer, string data)
 {
     buffer.data         += data;
     buffer.lines_number += CountLines(data);
 }
예제 #2
0
 /// @brief Concatenate a string to the end of a Regex Match
 ///
 private void AddDataToBuffer(ref BUFFER buffer, Match match)
 {
     buffer.data         += match.Value;
     buffer.lines_number += CountLines(match);
 }