Replies: 1 comment
-
Interactions with debuggers are part of the runtime, not the language. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
As C# 13 is bringing in Extension Types which lets you add properties to classes/interfaces, do we know what the recommended steering is going to be for IDEs when debugging?
For example, if we use the code shown in the C#13 docs for the feature:
If I were to do
var somePerson = new Person();
then inspectsomePerson
in the debugger should I seeIsLead
in the properties?I know this is sort of a question for the IDE creators such as MS for VS and Jetbrains for Rider, but I assume the C# technical team give some steering as to what is their expected behaviour here.
So can anyone provide any insight into if this would be automatically shown or if it would be up to the user to manually watch the
somePerson.IsLead
property?(Just to be clear this is not me asking for this feature, I am just wondering if any guidance has been given as to how it should be handled).
Beta Was this translation helpful? Give feedback.
All reactions