diff --git a/csharp/examples/FluentBuilderExample/Program.cs b/csharp/examples/FluentBuilderExample/Program.cs index a55f8419518..6dbdc3d778e 100644 --- a/csharp/examples/FluentBuilderExample/Program.cs +++ b/csharp/examples/FluentBuilderExample/Program.cs @@ -51,7 +51,7 @@ public static async Task Main(string[] args) using (var writer = new ArrowFileWriter(stream, recordBatch.Schema)) { await writer.WriteRecordBatchAsync(recordBatch); - await writer.WriteFooterAsync(); + await writer.WriteEndAsync(); } Console.WriteLine("Done");