Skip to content

Instantly share code, notes, and snippets.

View guhou's full-sized avatar

Gus guhou

View GitHub Profile
@guhou
guhou / csharp-lists.md
Last active September 3, 2015 06:16 — forked from anonymous/csharp-lists.md
A brain-dump/introduction to Lists in C#

An introduction to generic Lists in C#

In this article I present an introduction to generic List types in the C# language. I assume an audience familiar with the principles of structured programming, including parameters, arrays and procedures, but with little experience with object-oriented programming. I will motivate an example for an encapsulated collection class, and then introduce generics as a means to improve our collection.