We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2aca7e commit 590a132Copy full SHA for 590a132
dotnet/samples/Concepts/Functions/MethodFunctions_Advanced.cs
@@ -46,7 +46,7 @@ public async Task AccessNativeMethodAttributes()
46
// Access the custom attribute the underlying method is annotated with
47
var invocationSettingsAttribute = kernelFunction.UnderlyingMethod!.GetCustomAttribute<InvocationSettingsAttribute>();
48
49
- Console.WriteLine("Priority: " + invocationSettingsAttribute?.Priority);
+ Console.WriteLine($"Priority: {invocationSettingsAttribute?.Priority}");
50
}
51
52
private sealed class Plugin
0 commit comments