Article ID: 932711 - Last Review: February 7, 2007 - Revision: 1.0
Developing International Software, Second Edition Comments and Corrections
On This Page
SUMMARY
This article contains comments, corrections, and information about known errors relating to the Microsoft Press book Developing International Software, Second Edition, 0-7356-1583-7.
The following topics are covered:
The following topics are covered:
- Page 151: enUS and daDK used in place of en-US and da-DK
- Page 293: = operator used in place of ==
MORE INFORMATION
Page 151: enUS and daDK used in place of en-US and da-DK
On page 151, line 19 of the code sample reads:Thread.CurrentThread.CurrentCulture = new CultureInfo("enUS");It should read:
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");Line 30 reads:
Thread.CurrentThread.CurrentCulture = new CultureInfo("daDK");It should read:
Thread.CurrentThread.CurrentCulture = new CultureInfo("da-DK");Page 293: = operator used in place of ==
On page 293, the ninth line of the code sample reads:if (document.dir = "rtl")
It should read:
if (document.dir == "rtl")
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.
Note: This article is from Microsoft Knowledage Base
Related problems posted by other users | |
| more... |

