Article notes

What type of method can you implement for a C# class that enables you to provide access to internal subitems using an array-like syntax?
What keyword must be used in .NET to declare an anonymous type?
What syntax must be used in .NET to declare an anonymous type?
What type of type can be used to quickly model the "shape" of data with little overhead in .NET?
What type do anonymous types automatically derive from in .NET?
What is the syntax for creating an indexer method in C#?
What is an example of how you might overload the + operator in C# in a Point class?
What are the first two or three restrictions when defining an extension method in C#?
If you had a Square and Rectangle class in a C# app and wanted to be able to write the following code: Square s = (Square)rectangle What example code might you have in the Square class?
What was introduced in .NET to allow adding new methods or properties to a class or structure without modifying the original type in any direct manner?
What is the keyword and syntax used in C# to declare an anonymous type?
All anonymous types in C# automatically derive from what class?
Previous Next