View On GitHub
reading-notes
Reading Notes for Codefellows!
Project maintained by
AlanYHung
Hosted on GitHub Pages — Theme by
mattgraham
Code 401 ASP.NET
Reading 08
(All My Notes are attributed/sourced from the Resources directly preceding them.)
Summary
Collections are a way of managing groups of related objects.
Collections are more flexible than using arrays.
Collections assign keys to objects assigned to it for quick retrieval
Systems.Collections.Generic is a provided class that enforces data types
Custom Collections may be defined without using the provided class
Enumeration types are a set of named constants with underlying integral numeric types
Extension methods are required to add functionality to enum types.
Casting is required to convert enum types to their underlying integral types
Nested Types are variable types declared within another variable type
Generic Types allows on the fly typing, which adds flexibility in the reuse of the block
Resources
Collections (C#)
Author: Microsoft Docs
Article Source
Enumeration types (C# reference)
Author: Microsoft Docs
Article Source
C# 7.0 in a Nutshell (pp. 118-124, 301-313, 324-327)
Authors: Joseph Albahari & Ben Albahari
<– Back