The System.Text.StringBuilder class is very similar to the System.String class. but the difference is that StringBuilder class is mutable (mutable […]
Updated on Kisan Patel
Enumeration is a user defined value type. Enumerations contain a list of named constants that allows you to assign symbolic […]
Updated on Kisan Patel
In C#, Exception is a run-time error that arises because of some abnormal conditions, such as a division of a […]
Updated on Kisan Patel
In C#, you can have a single base class and multiple derived classes. If you do not want that any […]
Updated on Kisan Patel
Overriding is a feature that allows a derived class to provide a specific implementation of a method that is already […]
Updated on Kisan Patel
Sealed classes are classes that cannot be inherited. You can use the sealed keyword to define a class as sealed […]
Updated on Kisan Patel
The most important reason to use Object Oriented Programmng is to promote reusability of code and eliminate the redundant code. […]
Updated on Kisan Patel
Indexers can be termed as location indicators and they are used to access class objects in the same way as […]
Updated on Kisan Patel
The ref and our keyword can be used to change the behavior of the method parameters. When we pass a […]
Updated on Kisan Patel
It is possible to have more than one method with the same name and return type but with a different […]
Updated on Kisan Patel