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 a6c9247 commit 22760dbCopy full SHA for 22760db
src/OpenApi/gen/XmlCommentGenerator.Parser.cs
@@ -32,7 +32,7 @@ internal static string NormalizeDocId(string docId)
32
33
// Check if this is a conversion operator (op_Implicit or op_Explicit)
34
// For these operators, we need to keep the return type suffix
35
- if (docId.Contains("op_Implicit") || docId.Contains("op_Explicit"))
+ if (docId.Contains("op_Implicit", StringComparison.Ordinal) || docId.Contains("op_Explicit", StringComparison.Ordinal))
36
{
37
return docId;
38
}
0 commit comments