The Difference between String and StringBuilder in C#
AramT
55.4K views
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Now let's work on the below exercise:
Can you return the url of this website using the below strings variables?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace StringApp
{
public class StringUtil
{
public static string GlueString()
{
string tech = "tech";
string dot = ".";
string io = "io";
return ""; // fix this to include the glued string
}
}
}
Enter to Rename, Shift+Enter to Preview
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content