From 2b0dc2f8c527b5267956d89b880db6e2379a1f28 Mon Sep 17 00:00:00 2001 From: Peter Ibekwe <109177538+peibekwe@users.noreply.github.com> Date: Wed, 25 Mar 2026 08:43:37 -0700 Subject: [PATCH] Update dotnet/samples/03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotnet/samples/03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs b/dotnet/samples/03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs index fd402b7946..bcac8894ab 100644 --- a/dotnet/samples/03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs +++ b/dotnet/samples/03-workflows/Agents/WorkflowAsAnAgent/WorkflowFactory.cs @@ -56,7 +56,8 @@ internal static class WorkflowFactory /// between runs, clearing accumulated state so each run starts fresh. /// /// Without , attempting to reuse a workflow containing - /// shared stateful executor instances would throw an . + /// shared executor instances that do not implement this interface would throw an + /// . /// [YieldsOutput(typeof(string))] private sealed class ConcurrentAggregationExecutor() :