The Difference between String and StringBuilder in C#
AramT
53.4K views
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
}
}
}
Create your playground on Tech.io
This playground was created on Tech.io, our hands-on, knowledge-sharing platform for developers.