Category: c #
In some cases, you just need to write a console application and want to be able to pass in different command line parameters as key/pairs. You can use the …
C# 6.0 has many handy new features and the string interpolation is one of my favorites. Let’s look at the simple code that uses the string.format function. using System; …
Hello, We did a profiling and found out the following performance bottleneck when adding many sources at once. The code is intended to generate a unique ID everytime, but …
I have a C# function that generates a random upper case string of given length. It looks straightforward and the class StringBuilder is used to concatenate each random character. …
In case you are wondering so many ‘failed builds’ (due to unit tests failure) on Continuous Integration Server today… The reason is that we use msbuild testall.proj on CI …