We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cae384 commit 0c56aa2Copy full SHA for 0c56aa2
src/Features/CSharp/Portable/Completion/CompletionProviders/AwaitCompletionProvider.cs
@@ -89,7 +89,7 @@ protected override int GetAsyncKeywordInsertionPosition(SyntaxNode declaration)
89
if (returnType is null or IErrorTypeSymbol || taskLikeTypes.IsTaskLike(returnType))
90
return null;
91
92
- return $"Task<{existingReturnType}>";
+ return $"{nameof(Task)}<{existingReturnType}>";
93
}
94
95
0 commit comments