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

Function splitCSharpIdentifierParts

scripts/codegen/csharp.ts:244–246  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

242}
243
244function splitCSharpIdentifierParts(value: string): string[] {
245 return value.split(/[^A-Za-z0-9]+/).filter(Boolean);
246}
247
248function toPascalCasePart(value: string): string {
249 return fixBrandCasing(value.charAt(0).toUpperCase() + value.slice(1));

Callers 3

toPascalCaseFunction · 0.85
typeToClassNameFunction · 0.85
toCSharpIdentifierFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…