Extract C# type declarations, methods, namespaces, and usings from a .cs file.
(path: Path)
| 6476 | |
| 6477 | |
| 6478 | def 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 | |
| 6483 | def extract_apex(path: Path) -> dict: |