|
|
4. What's the top .NET class that everything is derived from?
System.Object
5. What does the term immutable mean?
The data value may not be changed. Note: The variable value may be changed, but the original immutable data value was discarded and a new data value was created in memory.
6. What's the difference between System.String and System.Text.StringBuilder classes?
System.String is immutable. System.StringBuilder was designed with the purpose of having a mutable string where a variety of operations can be performed.
|
| Pervious1-3
Next7-10 |
|
|
|
|
|
|
|