programming-c-sharpSimple c# StringBuilder exampleOn this pageSimple c# StringBuilder exampleA simple example of using the StringBuilder to concat strings. StringBuilder mySB = new StringBuilder();mySB.Append("line 1");mySB.Append("line 2");mySB.Append("line 3");Console.WriteLine(mySB.ToString()); Related Files https://github.com/seafooood/andrew-seaford.co.uk/tree/main/docs/programming-c-sharp/simple-csharp-stringbuilder C# Related Articles Adding days to a DateTime in C# C# Open File Dialog Create arraylist Create a autocompleting textbox using C# C# class properties