Shows in two simple steps to enable query strings in ClickOnce applications

Warning! This is the worst regex ever made

A public method that returns the caller of any method in the stack

As a follow-up on my post from yesterday about generating shorter GUIDs , I’ve created a small helper class in C#. The class encodes a GUID into a 22 character long string and decodes the string back to the original GUID...

The System.Guid is used whenever we need to generate a unique key, but it is very long. That’s in many cases not an issue, but in a web scenario where it is part of the URL we need to use its string representation which...

A couple of days ago, I had to store some very big strings in an XML file. To keep the file size down I wanted to compress the strings using a GZipStream and then decompress them later when needed. I modified the methods...

At work, we are about to build a new internal tool for administration of different systems. We developers need certain applications and the sales department needs some other ones. All the different people need to be able...

Today, I needed to store images in XML files so I had to serialize an image file into text so it could be written in the XML file. Of course, it should also be deserialized back to an image again by reading from the XML...

Some say that screen scraping is a lost art because it is no longer an advanced discipline. That may be right, but there are different ways of doing it. Here are some different ways that all are perfectly acceptable, but...

Update February 11th . The class now updates every feed in the cache asynchronously and automatically. On the login screen of Headlight , we are soon adding news updates so that our customers can see what is going on...