mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-08 09:31:51 +00:00
14 lines
296 B
C#
14 lines
296 B
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
// TopLevelStatementFunctionExample.cs
|
|||
|
|
|||
|
using AutoGen.Core;
|
|||
|
|
|||
|
public partial class TopLevelStatementFunctionExample
|
|||
|
{
|
|||
|
[Function]
|
|||
|
public Task<string> Add(int a, int b)
|
|||
|
{
|
|||
|
return Task.FromResult($"{a + b}");
|
|||
|
}
|
|||
|
}
|