Errata


Print Print Icon

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



Version Location Description Submitted By
Printed Page 57
Example 3-5

product class Product {
...
public int QuantityPerUnit {
...
}

should be

product class Product {
...
public string QuantityPerUnit
...
}

to be used with the example data ;-)

Amélie Husson 
Printed Page 133
the code of C# code and the code of VB

The code for the property of the class:
public int CustomerId
{
get { return _customerId; }
set { _customerId = value; }
}

Missing one line of tag. According to the description in page 132, it should be like

[DataMember]
public int CustomerId
{
get { return _customerId; }
set { _customerId = value; }
}

Also for VB code, one line as
<DataMember> _

need to be added for the property CustomerId too.

kent zhou 
Printed Page 134
4th paragraph

The line is:
when user click the OK button. Figure 6-2 shows the Silverlight 2 user interface

It should be read as:
when user click the Save button. Figure 6-2 shows the Silverlight 2 user interface

kent zhou