Inside C#, Second Edition Comments And Corrections (324550)



The information in this article applies to:

  • MSPRESS Inside C#, Second Edition, ISBN 0-7356-1648-5

This article was previously published under Q324550

SUMMARY

This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Inside C#, Second Edition, ISBN 0-7356-1648-5.

The following topics are covered:

  • Page 11: Main Method Public Definition Incorrect
  • Page 30: Error In Code Sample
  • Page 33: Error In Code Sample
  • Page 598: Incorrect variable name in code sample

MORE INFORMATION

Page 11: Main Method Public Definition Incorrect

On page 11, the last sentence of the first paragraph in the section "The Main Method", the statement "In addition, this method must be defined as public and static" is incorrect and should be removed.

The main method is private by default and does not need to be defined as public.

Page 30: Error In Code Sample

There is an error on line 9 of the first code sample on page 30. The opening double-quote (") is missing.

Change:
(NetModuleTestServer.netmodule)");

To:
"(NetModuleTestServer.netmodule)");


Page 33: Error In Code Sample

There is an error on line 9 of the first code sample on page 33. The opening double-quote (") is missing.

Change:
(SharedAssemblyServer.netmodule)");

To:
"(SharedAssemblyServer.netmodule)");


Page 598: Incorrect variable name in code sample

On page 598, the last code sample reads:

ThreadStart WorkerThreadMethod =
new ThreadStart(WorkerThreadMethod);


It should read:

ThreadStart worker =
new ThreadStart(WorkerThreadMethod);


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:MajorLast Reviewed:4/20/2006
Keywords:kbdocerr kbdocfix kbinfo KB324550