Skip to content

Commit e9abe3c

Browse files
authored
improve sentence readability (#6274)
1 parent d0d79a6 commit e9abe3c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/csharp/programming-guide/types/using-type-dynamic.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,12 @@ ms.assetid: 3828989d-c967-4a51-b948-857ebc8fdf26
2121

2222
[!code-csharp[CsProgGuideTypes#51](../../../csharp/programming-guide/nullable-types/codesnippet/CSharp/using-type-dynamic_3.cs)]
2323

24-
Operations in which the result is not `dynamic` include conversions from `dynamic` to another type, and constructor calls that include arguments of type `dynamic`. For example, the type of `testInstance` in the following declaration is `ExampleClass`, not `dynamic`.
24+
Operations in which the result is not `dynamic` include:
25+
26+
* Conversions from `dynamic` to another type.
27+
* Constructor calls that include arguments of type `dynamic`.
28+
29+
For example, the type of `testInstance` in the following declaration is `ExampleClass`, not `dynamic`:
2530

2631
[!code-csharp[CsProgGuideTypes#52](../../../csharp/programming-guide/nullable-types/codesnippet/CSharp/using-type-dynamic_4.cs)]
2732

0 commit comments

Comments
 (0)