.NET Framework Namespaces Flashcards
The most fundamental types in .NET live directly in which namespace?
They reside in the System namespace.
These include C#’s built-in types, the Exception base class, the Enum, Array, and Delegate base classes, and Nullable, Type, DateTime, TimeSpan, Guid, Math, Random, Convert, and BirConverter and more.
Which namespace is the StringBuilder class contained in?
System.Text
Under what namespace does the Regular Expressions class reside?
System.Text.RegularExpression
How are non-generic collections referenced?
System.Collections
How are generic collections referenced?
System.Collections.Generic
How are strongly typed collections referenced?
System.Collections.Specialized
Which namespace bases for your own collections?
System.Collections.ObjectModel
How is a thread-safe collection referenced?
System.Collections.Concurrent