You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dotnet/android#4582 we hid "internal" methods like Java.Lang.Object.ThresholdClass from the editor and debugger using [DebuggerBrowsable (DebuggerBrowsableState.Never)] and [EditorBrowsable (EditorBrowsableState.Never)]. However our bindings override some of these methods/properties and need to also apply these attributes or else they still show up in IDEs.
In dotnet/android#4582 we hid "internal" methods like
Java.Lang.Object.ThresholdClassfrom the editor and debugger using[DebuggerBrowsable (DebuggerBrowsableState.Never)]and[EditorBrowsable (EditorBrowsableState.Never)]. However our bindings override some of these methods/properties and need to also apply these attributes or else they still show up in IDEs.