From 532f9eeed13a68f5d27df2aca6665b26faf61d87 Mon Sep 17 00:00:00 2001 From: Xulei Liu Date: Tue, 14 Oct 2025 16:59:57 +0200 Subject: [PATCH] Remove the first case --- docs/csharp/fundamentals/types/anonymous-types.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/csharp/fundamentals/types/anonymous-types.md b/docs/csharp/fundamentals/types/anonymous-types.md index 14ff13c4f8a6e..e8a619819a6dc 100644 --- a/docs/csharp/fundamentals/types/anonymous-types.md +++ b/docs/csharp/fundamentals/types/anonymous-types.md @@ -50,7 +50,6 @@ This simplified syntax is particularly useful when creating anonymous types with The member name isn't inferred in the following cases: -- The candidate name is a member name of an anonymous type, such as `ToString` or `GetHashCode`. - The candidate name is a duplicate of another property member in the same anonymous type, either explicit or implicit. - The candidate name isn't a valid identifier (for example, it contains spaces or special characters).