G
Guest
Hello
Provided the following code:
string temp = "Short string"; // 12 chars
StringBuilder sb = new StringBuilder();
sb.Append(temp, 0, 30);
How many characters is the string in sb? 12 or is it filled with blanks to
reach 30 chars?
Greetings,
Todorov
Provided the following code:
string temp = "Short string"; // 12 chars
StringBuilder sb = new StringBuilder();
sb.Append(temp, 0, 30);
How many characters is the string in sb? 12 or is it filled with blanks to
reach 30 chars?
Greetings,
Todorov