(&self)
| 101 | } |
| 102 | |
| 103 | fn to_csharp_ident_upper(&self) -> String { |
| 104 | // Escape C# keywords |
| 105 | if Self::csharp_keywords().contains(&self) { |
| 106 | format!("@{self}") |
| 107 | } else { |
| 108 | self.to_upper_camel_case() |
| 109 | } |
| 110 | } |
| 111 | } |
no outgoing calls
no test coverage detected