Difference between // comments, /*
*/ comments and ///
comments
Latest answer: // comments
- It is Single-line
comment.............
What are the ways
to deploy an
assembly?
Latest answer: MSI
installer
CAB archive
XCOPY
command...........
Explain how to sort the elements of
the array in descending
order.
Latest answer: You can do
so by calling Sort() and then Reverse()
methods.............
System.String
vs. System.StringBuilder
classes
Latest answer:
System.String is
immutable.
Define protected
internal.
Latest answer: This type
of member is available to derived classes and
classes.............
Method overriding
vs.
overloading
Latest answer: Overloading
means having a method with the same name within the
class..........
Difference
between the System.Array.CopyTo() and
System.Array.Clone()
Latest answer:
System.Array.CopyTo() performs a deep copy of the
array...........
How is the DLL Hell problem
solved in
.NET?
Latest answer: DLL Hell
problem is solved in .NET with the introduction of Assembly
versioning. It allows the
application.................