Programming in the Key of C#: A Primer for Aspiring Programmers Comments And Corrections (867598)



The information in this article applies to:

  • MSPRESS Programming in the Key of C#: A Primer for Aspiring Programmers, ISBN 0-7356-1800-3

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Programming In The Key Of C#: A Primer for Aspiring Programmers, 0-7356-1800-3.

The folowing topics are covered:
  • Page 224: Missing "=" In Code Sample
  • Page 231: Missing "=" In Code Sample
  • Page 254: Missing ";" In Code Sample
  • Page 257: 0 Should Be 55
  • Page 372: System.ID Should Be System.IO

MORE INFORMATION

Page 224: Missing "=" In Code Sample

There is an error in the fifth sentence of the fourth paragraph on Page 224.

Change:

"i * i < iMax""

To:

"i * i <= iMax""

ProductStudio BugID = 6733


Page 231: Missing "=" In Code Sample

There is an error in the second program instruction after the 'SkipLoop' label in the SieveWithGoto.cs program on Page 231.

Change:

"if (i * i < iMax) goto NextBase;"

To:

"if (i * i <= iMax) goto NextBase;"

ProductStudio BugID = 6732


Page 254: Missing ";" In Code Sample

There is an error in the first program instruction of the Main() member function in the ReferenceParameters.cs program on page 254.

Change:

"int iMyAge = 50"

To:

"int iMyAge = 50;"

ProductStudio BugID = 6731


Page 257: 0 Should Be 55

On page 257, there is an error in the text following the ArrayValueParameter.cs code sample.

Change:
"ChangeArray sets the first element of the array to 0, and also sets the array itself to null."

To:
"ChangeArray sets the first element of the array to 55, and also sets the array itself to null."
ProductStudio BugID = 6642


Page 372: System.ID Should Be System.IO

There is a typographical error in the first sentence of the last paragraph on page 372.

Change:

"Another important .NET Framework namespace is System.ID."

To:

"Another important .NET Framework namespace is System.IO."

ProductStudio BugID = 6723


Microsoft Press is committed to providing informative and accurate books. All comments and corrections listed above are ready for inclusion in future printings of this book. If you have a later printing of this book, it may already contain most or all of the above corrections.

Modification Type:MinorLast Reviewed:8/27/2004
Keywords:kbdocfix kbdocerr KB867598 kbAudEndUser