-
Notifications
You must be signed in to change notification settings - Fork 6k
C# built-in types: mention dynamic as reference type #18857
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -33,6 +33,7 @@ The following table lists the C# built-in [reference](../keywords/reference-type | |||
|--------------|-------------------------| | |||
|[`object`](reference-types.md#the-object-type)|<xref:System.Object?displayProperty=nameWithType>| | |||
|[`string`](reference-types.md#the-string-type)|<xref:System.String?displayProperty=nameWithType>| | |||
|[`dynamic`](reference-types.md#the-dynamic-type)|| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should there be any text in the empty cell of the ".NET type" column?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dynamic type doesn't map to a different .NET type. I'd put <xref:System.Object>
as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @BillWagner, I've updated the table.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@BillWagner ping
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this looks great once we update that table cell.
@@ -33,6 +33,7 @@ The following table lists the C# built-in [reference](../keywords/reference-type | |||
|--------------|-------------------------| | |||
|[`object`](reference-types.md#the-object-type)|<xref:System.Object?displayProperty=nameWithType>| | |||
|[`string`](reference-types.md#the-string-type)|<xref:System.String?displayProperty=nameWithType>| | |||
|[`dynamic`](reference-types.md#the-dynamic-type)|| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dynamic type doesn't map to a different .NET type. I'd put <xref:System.Object>
as well.
Fixes #18849