[Reactive] public bool IsVisible { get; set; }
This will not generate any code.
[Reactive] public partial bool IsVisible { get; set; }
This is correct, but when I mistakenly write it in the first way, there seems to be no error or warning.
Can we have a warning or hint for this kind of misuse.
[Reactive] public bool IsVisible { get; set; }This will not generate any code.
[Reactive] public partial bool IsVisible { get; set; }This is correct, but when I mistakenly write it in the first way, there seems to be no error or warning.
Can we have a warning or hint for this kind of misuse.