From d5538a5f63f86d4cd783fb5d7fbea0c72c5eb688 Mon Sep 17 00:00:00 2001 From: James Groom Date: Wed, 8 Feb 2023 04:36:06 +1000 Subject: [PATCH] Updated C# and .NET docs supplement (markdown) --- C#-and-.NET-docs-supplement.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C#-and-.NET-docs-supplement.md b/C#-and-.NET-docs-supplement.md index 7d8758d..d5ab024 100644 --- a/C#-and-.NET-docs-supplement.md +++ b/C#-and-.NET-docs-supplement.md @@ -1,7 +1,7 @@ To save us repeating our complaints about the lack of proper documentation under each section, let's agree to gather all the frustration here: > AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA -## Collection type names +## Deceptive collection type names `IReadOnly{Collection,Dictionary,List,Set}` are for getting read-only views of the collections that implement them. They do not mean the collection is immutable (there are [separate classes](https://learn.microsoft.com/en-us/dotnet/api/system.collections.immutable?view=net-6.0) for that).