Monday, February 13, 2012

Tech Notes Software: Friday, February 10, 2012

SVN Checkout


SVN seems to be a little inconsistant in how it works.

Checkout seem to create the last in the list is created.  This is not what I expected.

svn co source/last_folder

At the location where the command is run the folder 'last_folder' will be created.

C# Using Statement

The using statement.

using (type obj = initializer)
{
   // use obj
}

The 'type' must evaluate to an object that implements the System.IDisposable

When the block concludes, the Dispose() method will be called on 'obj' created.

No comments: