C Sharp Tutorials

StringBuilder in C# – Free C# Tutorials

In this blog we will discuss about the StringBuilder class methods and properties followed by the array of Strings Mutable Strings that are modifiable can be created using the StringBuilder class. Example: StringBuilder str1 = new StringBuilder( ” xyz “); StringBuilder str2 = new StringBuilder(); The String object str1 is created with the initial size …

StringBuilder in C# – Free C# Tutorials Read More »

Two dimensional array in c# – Free C# Tutorials

In our previous blog we have discussed in detail about array declaration, creation and initialization and about one-dimensional arrays.Here in this blog we will discuss about Two dimensional array in c#. In one dimensional arrays we can store a list of values but there might occur a situation where we might have to store a …

Two dimensional array in c# – Free C# Tutorials Read More »