|
|
|
|
|
by pjc50
654 days ago
|
|
The feature I always suggest as uniquely C# flavoured is LINQ. https://learn.microsoft.com/en-us/dotnet/csharp/linq/get-sta... Although the SQL-like form isn't always favoured, and quite a lot of the time I use the plain OO one. Oh yes, extension methods: do you want object X to support method Y, but can't change object X? Well, provided you don't need access to anything private, you can just add a method and do X.Y() |
|