|
-
May 31st, 2007, 01:24 PM
#1
Need some good starting C# book.
Hi guys, I wonder if anyone knows any good text book to learn C#. I have some C++ and VB.Net acknowledge. Thanks in advance!
-
May 31st, 2007, 09:14 PM
#2
Re: Need some good starting C# book.
If you know some C++ and you know VB.NET then a C# book is, in my opinion, a waste of money. You already know the C# syntax because it is based on C/C++. You already know all the Framework types, members and conventions from VB.NET. Any subtleties of C# should be able to be picked up from Intellisense (which is more agressive in C#), MSDN and the Web in general. That's what I did.
-
Jun 1st, 2007, 12:30 AM
#3
Re: Need some good starting C# book.
Thanks jmcilhinney for the suggestion i also think it won’t be much help buying book but it is somewhere a little confusing for me to understand how to declare the event handlers since I noticed double-Clicking on the controls just generate one event. Anyway, Thank you very much.
-
Jun 1st, 2007, 12:49 AM
#4
Re: Need some good starting C# book.
Select the Control for which you want to generate the Event Handler. Open Properties Window, click on the Lightning Flash button at the top of the Properties Window. This will display all the events that can be handled for the selected control. Just double click on the Event name and there you go, the event handler will be automatically generated for you.
Use [code] source code here[/code] tags when you post source code.
My Articles
-
Jun 1st, 2007, 01:00 AM
#5
Re: Need some good starting C# book.
Be aware that VB 2005 supports the same functionality. It's actually better than using the code window in many situations because it allows to to create a single method to handle multiple events without having to write anything yourself. There's no way to do that using the old VB way.
-
Jun 1st, 2007, 01:05 AM
#6
Re: Need some good starting C# book.
Oh! guys thanks for the info! I can't beleve i couldn't notice that in VB 2005.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|