C#: Rename a project in Visual Studio

Renaming projects in Visual Studio is a pain in the @$$ and can be really time consuming if you don’t know what you’re doing. Visual Studio 2008 doesn’t come with…Renaming projects in Visual Studio is a pain in the @$$ and can be really time consuming if you don’t know what you’re doing. Visual Studio 2008 doesn’t come with a…

Read the rest...

Adding comments to custom controls in the win form designer

As I was making a custom win form control I saw that my standard XML-comments wasn’t showing for my events in the win form designer. As I don’t use win…As I was making a custom win form control I saw that my standard XML-comments wasn’t showing for my events in the win form designer. As I don’t use win forms…

Read the rest...

C# Setup project

To distribute a a project smoothly there is a project type in Visual Studio called Setup with which you can create an installation package with ease. I’m going to show…To distribute a a project smoothly there is a project type in Visual Studio called Setup with which you can create an installation package with ease. I’m going to show you…

Read the rest...

C#: conditional debugging

Sometimes when you loop through large amounts of data you want to add a breakpoint which won’t necessarily stop in every loop but rather when a specific value pops up….Sometimes when you loop through large amounts of data you want to add a breakpoint which won’t necessarily stop in every loop but rather when a specific value pops up. One…

Read the rest...