(&self)
| 92 | } |
| 93 | |
| 94 | fn to_csharp_ident(&self) -> String { |
| 95 | // Escape C# keywords |
| 96 | if Self::csharp_keywords().contains(&self) { |
| 97 | format!("@{self}") |
| 98 | } else { |
| 99 | self.to_lower_camel_case() |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | fn to_csharp_ident_upper(&self) -> String { |
| 104 | // Escape C# keywords |
no outgoing calls
no test coverage detected