Archive

Archive for the ‘Uncategorized’ Category

Code Test, Take 2

August 29th, 2009 No comments

This is a test of formatted code:

        public CompleteStorageService(string connectionString, string fileName)
        {
            if (connectionString == null)
            {
                throw new ArgumentNullException("connectionString");
            }
            if (fileName == null)
            {
                throw new ArgumentNullException("fileName");
            }

            this.connectionString = connectionString;
            this.fileName = fileName;

            this.syncLock = new object();
        }

Thanks ploeh …

Categories: Uncategorized Tags:

Hello world!

August 28th, 2009 1 comment

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Categories: Uncategorized Tags: