I'm in the middle in studying some code and I encountered this word "Append" and I don't understand what it does.
Code:
public static void appendData(string data)
{
if (isRecording) sb.Append(data + Environment.NewLine);
}
What does append mean?
