Category: c #
The Visual Studio is a powerful IDE (Integrated Development Environment). It provides some convenient features for speed up the coding. For example, if you want to write a switch …
In software engineering, the version number usually comprises of 4 integers separated by dots. For example, 1.0.0.2. Version comparison is usually carried out from left most to the right …
What happens if you pass a string type to a function? Does it pass by value or reference? What happens if you pass StringBuilder? In C#, the string is …
With C#, we can write code in a quick and elegant way. For example, if you want to search for temporary files (with some file patterns) in the system …
Quite often, we need to loop an array but dealing with continuous two elements at each iteration. This sounds an easy task and one can usually pay attention to …