T
Tony Johansson
Hi!
We have this question
Match the following features with the correct options. The correct answer is
3A
1B
2C
4D
1. Improves performance with strings to make .NET Framework applications
efficient.
2. Does not let you change the value of a string after it is assigned to an
object.
3. Helps you handle strings efficiently.
4. Converts the string value contained in the StringBuilder class to a
string
A. StringBuilder class.
B. String interning.
C. Immutable strings.
D. ToString method.
I do agree with 2C and 4D but the other two is difficult.
I mean a StringBuilder match both 1 and 3 and so does
string interning
Can somebody tell me why number 3 match A and not B and
why 1 match B and not A
//Tony
We have this question
Match the following features with the correct options. The correct answer is
3A
1B
2C
4D
1. Improves performance with strings to make .NET Framework applications
efficient.
2. Does not let you change the value of a string after it is assigned to an
object.
3. Helps you handle strings efficiently.
4. Converts the string value contained in the StringBuilder class to a
string
A. StringBuilder class.
B. String interning.
C. Immutable strings.
D. ToString method.
I do agree with 2C and 4D but the other two is difficult.
I mean a StringBuilder match both 1 and 3 and so does
string interning
Can somebody tell me why number 3 match A and not B and
why 1 match B and not A
//Tony