Skip to content

Commit 590a132

Browse files
Update dotnet/samples/Concepts/Functions/MethodFunctions_Advanced.cs
Co-authored-by: Roger Barreto <[email protected]>
1 parent d2aca7e commit 590a132

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dotnet/samples/Concepts/Functions/MethodFunctions_Advanced.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public async Task AccessNativeMethodAttributes()
4646
// Access the custom attribute the underlying method is annotated with
4747
var invocationSettingsAttribute = kernelFunction.UnderlyingMethod!.GetCustomAttribute<InvocationSettingsAttribute>();
4848

49-
Console.WriteLine("Priority: " + invocationSettingsAttribute?.Priority);
49+
Console.WriteLine($"Priority: {invocationSettingsAttribute?.Priority}");
5050
}
5151

5252
private sealed class Plugin

0 commit comments

Comments
 (0)