Errata

C# 7.0 Pocket Reference

Errata for C# 7.0 Pocket Reference

Submit your own errata for this product.

The errata list is a list of errors and their corrections that were found after the product was released.

The following errata were submitted by our customers and have not yet been approved or disproved by the author or editor. They solely represent the opinion of the customer.

Color Key: Serious technical mistake Minor technical mistake Language or formatting error Typo Question Note Update

Version Location Description Submitted by Date submitted
Printed Page 53
Second to last sentence

The sentence reads, "You can also use the null-conditional operator to call a void method:".

This is true but you can also call non-void methods. The sentence might give a reader the impression that *only* void methods can be called. There seems to be no reason to call out void methods.

Tony  Jun 09, 2020 
Printed Page 70
1st sentence of 1st paragraph.

In the first sentence on page 70 the word "end" is used where "and" should be.

The sentence in question:
"Local methods can appear inside other function kinds, such as, property accessors, constructors, end even inside other local methods.".

Correction:
"..., end even inside other local methods." should be "..., and even inside other local methods.".

Owen Shartle  Feb 25, 2019 
Printed Page 164
Table 2. Filtering operators

TakeWhile : Emits elements from the input sequence until the given predicate is true
SkipWhile : Ignores elements from the input sequence until the given predicate is true, and then emits the rest


Should be while instead of until:

TakeWhile : Emits elements from the input sequence WHILE the given predicate is true
SkipWhile : Ignores elements from the input sequence WHILE the given predicate is true, and then emits the rest





Markus Beer  Dec 06, 2018