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 …