473,938 Members | 15,727 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

question about a C# book

I'm interested in Programming Windows with C# (Core Reference) by
Charles Petzold, but do you think that the new version of C# (along with
.NET 2.0) will make this book obsolete in any way?
Nov 17 '05
13 1786
Thanks for all that info. I'll be sure to check out the new stuff for
2.0 as well.
Doug Arnott wrote:
John Salerno wrote:
> I'm interested in Programming Windows with C# (Core Reference) by
> Charles Petzold, but do you think that the new version of C# (along with
> .NET 2.0) will make this book obsolete in any way?


The author's web site has the following web page for "Programmin g
Windows With C#":

http://www.charlespetzold.com/pwcs/index.html

Even without the change from .NET 1.1 to .NET 2.0, one could argue
that "Programmin g Windows With C#" is obsolete due to the need to
correct the errors. A 2nd edition is forthcoming if the past is any
indication as Charles Petzold has "Programmin g Windows" up to the
5th edition. When? I do not know.

I side-stepped your question because your question can be broken
down into parts. 1) What are the C# language changes from .NET 1.x
to .NET 2.0? 2) What are the changes in the classes from .NET 1.x
to .NET 2.0?

Since I am in the process of learning C# with the experience from
other software programming languages, I can only give a gut feel
answer to these questions ...

For item 1 above, if you have been monitoring the newsgroup, the
CSharpFinalWork ingDraftApril20 05.pdf document was identified for
download in the following article for your analysis:

http://groups-beta.google.com/group/...e=source&hl=en

There is also web pages such as the following:

http://msdn.microsoft.com/vcsharp/20...rp_preview.asp

My gut feel is that the C# language changes from .NET 1.x to .NET
2.0 has little or no impact on "Programmin g Windows With C#". One
change may be to use Anonymous Methods wherever possible to help
make the code examples read easier, but I do not see such a change
as needed. However, some of the new C# language aspects should be
included in "Programmin g In the Key Of C#", for example, Generics.

For item 2 above, I have not seen a concise list of the changes in-
volving the classes, and I would like to see one. Maybe someone
knows of such a list.

When I was programming in Java, the word "deprecated " was the term
to mean that some class or method was becoming obsoleted. One ap-
proach was for the Java compiler to issue a warning when a depre-
cated class or method was used in a compile. After wandering around
microsoft.com using google searches, I did google searches using
the following phrases and got a few hits:

"This class has been deprecated."
"This method has been deprecated."
"This property has been deprecated."

From what I have seen from those hits and after using portions of
"Programmin g Windows With C#", my gut feel is that the changes in
the classes from .NET 1.x to .NET 2.0 have no impact on "Programm-
ing Windows with C#".

If you have finished with "Programmin g in the Key of C#", then you
are ready for "Programmin g Windows With C#".

Doug

Nov 17 '05 #11
Sujith wrote:
Can somebody tell me which is the best book for .Net and C# for a
beginner/Intermediate level.
I would like to take MCAD also.


The MCAD books by Amit Kalani are great! They teach the core areas of
..NET, but you'll need another book to learn the C# language: I like
Programming C# by Jesse Liberty for that.

Eric
Nov 17 '05 #12
Eric wrote:
Sujith wrote:
Can somebody tell me which is the best book for .Net and C# for a
beginner/Intermediate level.
I would like to take MCAD also.

The MCAD books by Amit Kalani are great! They teach the core areas of
.NET, but you'll need another book to learn the C# language: I like
Programming C# by Jesse Liberty for that.

Eric


Just got Liberty's book. After I finish the one I'm reading, I'll start
on it. I'm looking forward to it.
Nov 17 '05 #13


*** Sent via Developersdex http://www.developersdex.com ***
Nov 17 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1642
by: j-marvin | last post by:
hi- i have a book on mysql written for version 4 that has hard to read screen shots. i'd like to get a newer mysql book. do i have to worry about the version number of mysql i am using if i use php 4.3 version or newer? i'd like to get the osbourne mysql book. the only thought that comes to mind is some things may be deprecated since the php 4.2 book i own was published. i ought to be able to use the net and my new mysql book to...
15
8076
by: Wolfram Humann | last post by:
Hi, please don't be too harsh if I made stupid errors creating this simple example from my more complex case. Suppose I have a class like this: class BOOK { const string title;
1
1433
by: Tony Johansson | last post by:
Hello! I'm reading a book about C++ and there is something that I don't understand so I ask you. I have marked the section from the book that is of intertest by tagging it with BOOK START HERE and ending with BOOK ENDING HERE. All that text between is just a copy from the book. My question come after the text section. The book says
11
2372
by: tigervamp | last post by:
I purchased "Pointers on C" online and just received the book. The pages look like they have been poorly photocopied, not the quality I would expect from a $73 book. My question is, to those that have the book, is your copy the same or was I hood-winked? Yes, I know this is off-topic but I thought it would be the best place to ask since I know people here have the book. Thanks,
26
1709
by: myName | last post by:
a && b || c is evaluated as (a && b) || c or it is evaluated as a && (b || c)
3
1623
by: John Salerno | last post by:
Along with events and delegates, polymorphism has been something I sort of struggle with every now and then. First, let me quote the book I'm reading: "Polymorphism is most useful when you have two or more derived classes that use the same base class. It allows you to write generic code that targets the base class rather than having to write specific code for each object type." And here is the example in the book:
11
296
by: Darklight | last post by:
Question the program below is taken from a book which i have been told is bad, but it gives me the basics which is what i need, and yes i know the gets function should not be used, but i would like to see how other people would get the program below to work. I have already got it to work by changing some thing in the typedef struct, but i would like to see how the more experienced programmer would get it to work The program is used to...
9
2038
by: me | last post by:
Hi All, I am new to Classes and learniing the ropes with VB.NET express Here's my question - say I have a want to manage a list of books. Each book has an Author, Title and ISBN Now, I am used to using Arrays so I would normally do something like this: Set an array up during the init routine (called from form_load) say of
2
15345
by: djc | last post by:
I read a network programming book (based on framework 1.1) which indicated that you should 'never' use the RecieveTimeout or the SendTimeout 'socket options' on TCP sockets or you may loose data. I now see the socket.RecieveTimeout 'property' in the visual studio 2005 help documentation (framework 2.0) and it has example of it being used with TCP socket. This propery is also listed as 'new in .net 2.0'. 1) is the socket.RecieveTimeout...
7
2698
by: gk | last post by:
XML ====== <bookstore> − <book category="COOKING"> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price>
0
10132
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
11521
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
11285
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10653
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
8214
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6072
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6291
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
4444
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3497
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.