What is the meaning of the word "Append" (C#) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T05:53:38Z http://stackoverflow.com/feeds/question/1068725 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1068725/what-is-the-meaning-of-the-word-append-c 0 What is the meaning of the word "Append" (C#) tintincute 2009-07-01T11:53:08Z 2009-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#1068738 2 Answer by ChrisF for What is the meaning of the word "Append" (C#) ChrisF 2009-07-01T11:55:33Z 2009-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#1068747 1 Answer by James for What is the meaning of the word "Append" (C#) James 2009-07-01T11:56:22Z 2009-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#1068751 4 Answer by John Saunders for What is the meaning of the word "Append" (C#) John Saunders 2009-07-01T11:57:29Z 2009-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#1068764 3 Answer by chinna for What is the meaning of the word "Append" (C#) chinna 2009-07-01T12:00:17Z 2009-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#1068767 2 Answer by somori for What is the meaning of the word "Append" (C#) somori 2009-07-01T12:01:21Z 2009-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#1068770 0 Answer by RichardOD for What is the meaning of the word "Append" (C#) RichardOD 2009-07-01T12:01:44Z 2009-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>