System.StringBuilder and System.String classes
State the difference between System.StringBuilder and System.String classes?
Expert
StringBuilder and String classes are used for storing string values but the difference in them is that String is immutable (read only) by nature, because any value once assigned to String object cannot be changed after its creation. When value in String object is changed, a new object is created, in the memory, with new value assigned to the String object. Whereas, the StringBuilder class is mutable, since it occupies same space even after the value is changed. StringBuilder class is more efficient where you need to execute huge amount of string manipulation.
Illustrate the advantages of ASP.Net?
How the cursor can be programmatically positioned on a given line or on a character in the RichTextBox control in C#?
How can a text box be enforced to show characters in the uppercase?
Name the methods of DataView class?
Write the difference between for loop and the while in C#.
What we can do to allot page specific attributes in the ASP.NET application?
Explain what is meant by the IL?
Write the name of the class that manages event and layout of every ToolStrip elements?
Explain two properties of GridView control which specifies to turn on paging and sorting.
Distinguish among in-proc and out-of-proc
18,76,764
1957607 Asked
3,689
Active Tutors
1428815
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!