show/hide this revision's text 3 deleted 281 characters in body; edited tags

Hi

I'm new to programming. I've been learning C# since April. Now my boss gave me a code to learn and study but it seems to be very difficult because some of the Data types are quite new to me

I'm in the middle in studying the some code and I encountered this word "Append" and I don't understand what does it dodoes.

Does anybody have any idea? It will be helpful

For example purposes: this is one part of the code

Code:

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

Thanks

What does append mean?

show/hide this revision's text 2 edited title

AppendData c#What is the meaning of the word "Append" (C#)

show/hide this revision's text 1

AppendData c#

Hi

I'm new to programming. I've been learning C# since April. Now my boss gave me a code to learn and study but it seems to be very difficult because some of the Data types are quite new to me

I'm in the middle in studying the code and I encountered this word "Append" and I don't understand what does it do.

Does anybody have any idea? It will be helpful

For example purposes: this is one part of the code:

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

Thanks