Skip to content

Commit bc8e451

Browse files
authored
C# built-in types: mention dynamic as reference type (#18857)
* C# built-in types: mention dynamic as reference type * Addressed feedback
1 parent 1d2a490 commit bc8e451

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/language-reference/builtin-types/built-in-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ The following table lists the C# built-in [reference](../keywords/reference-type
3333
|--------------|-------------------------|
3434
|[`object`](reference-types.md#the-object-type)|<xref:System.Object?displayProperty=nameWithType>|
3535
|[`string`](reference-types.md#the-string-type)|<xref:System.String?displayProperty=nameWithType>|
36+
|[`dynamic`](reference-types.md#the-dynamic-type)|<xref:System.Object?displayProperty=nameWithType>|
3637

3738
In the preceding tables, each C# type keyword from the left column is an alias for the corresponding .NET type. They are interchangeable. For example, the following declarations declare variables of the same type:
3839

@@ -47,4 +48,3 @@ The [`void`](void.md) keyword represents the absence of a type. You use it as th
4748

4849
- [C# reference](../index.md)
4950
- [Default values of C# types](default-values.md)
50-
- [`dynamic` keyword](reference-types.md#the-dynamic-type)

0 commit comments

Comments
 (0)