vote up 0 vote down star

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?

flag

6  
Listen, you are going to start looking at contributing a bit and doing some more homework, perhaps reading a few books. – Sam Saffron Jul 1 at 11:56
2  
I am voting to close this, not that I have anything against how to move a turtle, this question just does not make sense – Sam Saffron Jul 1 at 12:05
2  
I'd be surprised if there was not a more appropriate resource for looking up one word in another language. – Mark Dickinson Jul 1 at 12:12
2  
@sam: I'm reading some books. But I haven't encountered this word "Append" yet while learning c#. And I've also tried searching google and it only display questions also about "Append". Listen, if I've knew the answer I wont post this question here! – tintincute Jul 1 at 12:18
1  
My question was not about the meaning of append in general term, but the function of it in the code given. – tintincute Jul 1 at 12:24
show 8 more comments

6 Answers

vote up 4 vote down check

The answer from ChrisF is correct as far as StringBuilder.Append is concerned.

In general, the word "Append" means "to add to the end of". See http://en.wiktionary.org/wiki/append.

link|flag
thanks John :-) – tintincute Jul 1 at 12:32
vote up 2 vote down

I would guess that sb is of type StringBuilder.

Append() adds the supplied string to the end of the string being built in the StringBuilder variable.

link|flag
Thanks ChrisF so that means StringBuilder is another Data type? I haven't encountered that yet as data type. just to make sure. Thanks – tintincute Jul 1 at 12:26
StringBuilder is a reference type. Search for it in your IDEs help or online here msdn.microsoft.com/en-us/library/… – ChrisF Jul 1 at 12:34
vote up 1 vote down

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.

See MSDN documentation

link|flag
thanks James for the link:-) – tintincute Jul 1 at 12:25
vote up 3 vote down

This is quite simple. Then code above is simply "adding" or "appending" the variables/text supplied within the brackets to the variable "sb".

Append can be found as part of the System.Text.StringBuilder class which I believe is being used above.

More info can be found following this link: StringBuilder Class

Happy coding!

link|flag
this is great input chinna. thanks:-) i'll take note of that – tintincute Jul 1 at 12:27
vote up 2 vote down

I would point out that the "right" way to do that bit of code is:

public static void appendData(string data)
    {
        if (isRecording) 
            {
                sb.Append(data);
                sb.Append(Environment.NewLine);
            }
    }

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.

link|flag
1  
The "right" way is probably AppendLine ... – Sam Saffron Jul 1 at 12:02
1  
Actually a better way would be to use AppendLine. – RichardOD Jul 1 at 12:03
It isn't much more efficient, the breakover occurs when you concat three or more strings in a big loop. Your's is better to debug. :) – Mark Dickinson Jul 1 at 12:03
@Sam- you beat me to it! – RichardOD Jul 1 at 12:05
thanks somori for additional input. what i would like to know is what is the function of "Append" here in the code and what does it do. i know it's good if the code is written nicely, but i think it's not the issue here at the moment. – tintincute Jul 1 at 12:21
vote up 0 vote down

Assuming you are using Visual Studio put your cursor on the word Append and Press F1, you'll probably see something like this. If you are considering refactoring this and assuming it is using a StringBuilder, you might also want to read about AppendLine.

link|flag
hi Richard thanks. yes I'm using VS I tried pointing my cursor to the word Append and press F1, but nothing happened. I tried searching in google just by typing append c# and I'm getting no explanations. Google displays only questions about "append". I don't know maybe I'm not searching it properly. But thanks for your input – tintincute Jul 1 at 12:15
Probably something to do with your setup. Have a look at this- blogs.msdn.com/randalli/archive/… it might help. – RichardOD Jul 2 at 7:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.