MCPcopy Create free account
hub / github.com/Graphify-Labs/graphify / extract_csharp

Function extract_csharp

graphify/extract.py:6478–6480  ·  view source on GitHub ↗

Extract C# type declarations, methods, namespaces, and usings from a .cs file.

(path: Path)

Source from the content-addressed store, hash-verified

6476
6477
6478def extract_csharp(path: Path) -> dict:
6479 """Extract C# type declarations, methods, namespaces, and usings from a .cs file."""
6480 return _extract_generic(path, _CSHARP_CONFIG)
6481
6482
6483def extract_apex(path: Path) -> dict:

Calls 1

_extract_genericFunction · 0.85