What is the meaning of the word "Append" (C#) - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T05:53:38Zhttp://stackoverflow.com/feeds/question/1068725http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c0What is the meaning of the word "Append" (C#)tintincute2009-07-01T11:53:08Z2009-07-03T00:59:16Z
<p>I'm in the middle in studying some code and I encountered this word "Append" and I don't understand what it does.</p>
<h3>Code:</h3>
<pre><code>public static void appendData(string data)
{
if (isRecording) sb.Append(data + Environment.NewLine);
}
</code></pre>
<p>What does append mean?</p>
http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c/1068738#10687382Answer by ChrisF for What is the meaning of the word "Append" (C#)ChrisF2009-07-01T11:55:33Z2009-07-01T12:12:02Z<p>I would guess that <code>sb</code> is of type <code>StringBuilder</code>.</p>
<p><code>Append()</code> adds the supplied string to the end of the string being built in the <code>StringBuilder</code> variable.</p>
http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c/1068747#10687471Answer by James for What is the meaning of the word "Append" (C#)James2009-07-01T11:56:22Z2009-07-01T11:56:22Z<p>It will add the string representation of the object to end of the string builder instance. It basically calls the .ToString() method of whatever object you pass in and concatenates it to the end of the internal string being build up.</p>
<p>See <a href="http://msdn.microsoft.com/en-us/library/system.text.stringbuilder.append.aspx" rel="nofollow">MSDN documentation</a> </p>
http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c/1068751#10687514Answer by John Saunders for What is the meaning of the word "Append" (C#)John Saunders2009-07-01T11:57:29Z2009-07-01T11:57:29Z<p>The answer from ChrisF is correct as far as StringBuilder.Append is concerned.</p>
<p>In general, the word "Append" means "to add to the end of". See <a href="http://en.wiktionary.org/wiki/append" rel="nofollow">http://en.wiktionary.org/wiki/append</a>.</p>
http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c/1068764#10687643Answer by chinna for What is the meaning of the word "Append" (C#)chinna2009-07-01T12:00:17Z2009-07-01T12:08:03Z<p>This is quite simple. Then code above is simply "adding" or "appending" the variables/text supplied within the brackets to the variable "sb".</p>
<p>Append can be found as part of the <code>System.Text.StringBuilder</code> class which I believe is being used above.</p>
<p>More info can be found following this link: <a href="http://msdn.microsoft.com/en-us/library/system.text.stringbuilder%28VS.71%29.aspx" rel="nofollow"><code>StringBuilder</code> Class</a></p>
<p>Happy coding!</p>
http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c/1068767#10687672Answer by somori for What is the meaning of the word "Append" (C#)somori2009-07-01T12:01:21Z2009-07-01T12:01:21Z<p>I would point out that the "right" way to do that bit of code is:</p>
<pre><code>public static void appendData(string data)
{
if (isRecording)
{
sb.Append(data);
sb.Append(Environment.NewLine);
}
}
</code></pre>
<p>Append is doing the same job as string1 + string2 but it is doing it in a much more efficient manner. Look up "Immutable Strings C#" for some more details if you need them.</p>
http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c/1068770#10687700Answer by RichardOD for What is the meaning of the word "Append" (C#)RichardOD2009-07-01T12:01:44Z2009-07-01T12:01:44Z<p>Assuming you are using Visual Studio put your cursor on the word Append and Press F1, you'll probably see <a href="http://msdn.microsoft.com/en-us/library/system.text.stringbuilder.append.aspx" rel="nofollow">something like this</a>. If you are considering refactoring this and assuming it is using a StringBuilder, you might also want to read about <a href="http://msdn.microsoft.com/en-us/library/system.text.stringbuilder.appendline.aspx" rel="nofollow">AppendLine</a>.</p>