private void ValidateCellAddress(string cellAddress) { Require.Argument(cellAddress).IsNotNullOrEmpty("cellAddress"); if (!ExcelAddress.IsValidCellAddress(cellAddress)) { throw new ArgumentException(cellAddress + " is not a valid cell address. Use A1 format."); } }