Code Test, Take 2

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 …

About strobaek

.NET developer/architect. Runner, espresso drinker and lover of gourmet food.
This entry was posted in Miscellaneous. Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *