> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# DumpResult helper method

> DumpResult helper method

```csharp theme={null}
using SuperOffice;
using SuperOffice.CRM.Services;
using SuperOffice.CRM.ArchiveLists;

private void DumpResult( ArchiveColumnInfo[] columns, ArchiveListItem[] rows )
  {
    Array.ForEach( columns, delegate( ArchiveColumnInfo column ) { Console.Write( column.ToString() ); } );
    Console.WriteLine();
    Array.ForEach( rows, delegate( ArchiveListItem row )
    {
      foreach(KeyValuePair data in row.ColumnData)
      {
        Console.Write( ( data.Value != null ? data.Value.DisplayValue : "-" ) + "\t" );
      }
      Console.WriteLine();
    } );
    Console.WriteLine();
  }
```


## Related topics

- [Find a project, returning the name](/en/api/search/ifindagent/find-project-by-name.md)
- [Find a contact using a udef field](/en/api/web-services/howto/custom-objects/find-contact-by-udef.md)
- [Helper classes](/en/api/plugins/erp-connectors/helpers.md)
- [StatResult](/en/automation/crmscript/reference/CRMScript.Native.StatResult.md)
- [AddressHelper class](/en/api/localization/address/addresshelper.md)
- [Culture Helper](/en/api/localization/culture/culturesettinghelper.md)
