c#

Convert Byte Array to String in C#

March 24, 2015 by

Converting a byte array to a stringĀ in C# is easy. In fact, it can be done in a single line. Below is an example that converts a string into a byte array. In the example that follows, we will then convert that byte array back to a string, effectively showing you how to do the… read more

The Singleton Pattern

July 22, 2012 by

The singleton pattern is one of the most popular and well known patterns in software development. It is extremely simple and yet solves a fundamental and common problem. However, as this article discusses, everything has a cost.