Comments on: ArrayList and List Comparasion in C# https://code-maze.com/csharp-arraylist-vs-list/ Learn. Code. Succeed. Mon, 19 Jun 2023 17:39:56 +0000 hourly 1 https://wordpress.org/?v=6.7.5 By: Marinko Spasojević https://code-maze.com/csharp-arraylist-vs-list/#comment-8485 Mon, 19 Jun 2023 17:39:56 +0000 https://drafts.code-maze.com/?p=88631#comment-8485 In reply to Jeff S..

Yeah, that’s fixed now. Thank you, Jeff

]]>
By: Jeff S. https://code-maze.com/csharp-arraylist-vs-list/#comment-8484 Mon, 19 Jun 2023 16:53:52 +0000 https://drafts.code-maze.com/?p=88631#comment-8484 This statement: “if the application we’re developing is targeting a .NET framework version .NET 2.0 or below” should probably read:
“if the application we’re developing is targeting a .NET Framework version 1.0 or 1.1, then we can use ArrayList; otherwise if we are targetting .NET Framework 2.0 or newer we should use List<T>.”

ArrayList was basically deprecated with the release of .NET Framework 2.0 and the generic collections.

]]>
By: Abed Jaber https://code-maze.com/csharp-arraylist-vs-list/#comment-8073 Sun, 07 May 2023 02:25:24 +0000 https://drafts.code-maze.com/?p=88631#comment-8073 Good article

]]>