A little command line parser in C#

0 Comments

If you create a  custom C# console application and want it to use parameters, you must create a command line parser to covert the command line parameters to C# variables. There are many different ways

TFS 2010 Best Practices and TFS Structure

0 Comments

We used the TFS Best Practices Guide on CodePlex for deploying and using our TFS server: http://tfsguide.codeplex.com/     Based on this guide we used the following TFS Structure:   $MyTeamProject1 /Main                                                                                    à Can

More information on Branching

0 Comments

If you wan to read more about branching, read the following article: http://www.codinghorror.com/blog/2007/10/software-branching-and-parallel-universes.html

How to serialize and deserialize an object in C# to a XML file

0 Comments

The following code shows how to serialize and deserialize an object in C# to a XML file.   Code using System; using System.Linq; using System.Collections.Generic; using System.Text; using System.IO; using System.Xml.Serialization; using System.Reflection; namespace MobileUI.BC