eerhardt commented on a change in pull request #10527: URL: https://github.com/apache/arrow/pull/10527#discussion_r666491771
########## File path: csharp/src/Apache.Arrow/Ipc/ArrowStreamWriter.cs ########## @@ -723,4 +868,62 @@ public virtual void Dispose() } } } + + internal static class DictionaryCollector + { + internal static void Collect(RecordBatch recordBatch, ref DictionaryMemo dictionaryMemo) + { + Schema schema = recordBatch.Schema; + for (int i = 0; i < schema.Fields.Count; i++) + { + { Review comment: These braces are unnecessary. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org