MCPcopy Index your code
hub / github.com/github/copilot-sdk / xmlDocEnumMemberComment

Function xmlDocEnumMemberComment

scripts/codegen/csharp.ts:213–217  ·  view source on GitHub ↗
(enumValueDescriptions: EnumValueDescriptions | undefined, value: string)

Source from the content-addressed store, hash-verified

211}
212
213function xmlDocEnumMemberComment(enumValueDescriptions: EnumValueDescriptions | undefined, value: string): string[] {
214 const description = enumValueDescriptions?.[value];
215 if (description) return xmlDocComment(description, " ");
216 return rawXmlDocSummary(`Gets the <c>${escapeXml(value)}</c> value.`, " ");
217}
218
219function toPascalCase(name: string): string {
220 const parts = splitCSharpIdentifierParts(name);

Callers 1

getOrCreateEnumFunction · 0.85

Calls 3

xmlDocCommentFunction · 0.85
rawXmlDocSummaryFunction · 0.85
escapeXmlFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…