We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5cc95e commit 98260bbCopy full SHA for 98260bb
1 file changed
docs/language_specification/decorators.md
@@ -76,6 +76,11 @@ class Example:
76
pass
77
```
78
79
+> **Note:** When `@public` overrides a naming-convention access level (e.g., `@public __should_be_public`),
80
+> the generated C# member retains the underscore prefix (`public int __ShouldBePublic`). Downstream C#
81
+> analyzers (StyleCop, Roslyn analyzers) may flag this as a naming violation on the generated output.
82
+> These warnings on generated code can be safely ignored.
83
+
84
*Implementation: ✅ Native - Direct mapping to C# access modifiers.*
85
86
## Method Modifiers
0 commit comments