基本信息·出版社:东南大学出版社 ·页码:738 页 ·出版日期:2009年05月 ·ISBN:7564112387/9787564112387 ·条形码:9787564112387 ·版本:第1版 · ...
商家名称 |
信用等级 |
购买信息 |
订购本书 |
|
 |
深入浅出C#(影印版) |
 |
|
 |
深入浅出C#(影印版) |
 |

基本信息·出版社:东南大学出版社
·页码:738 页
·出版日期:2009年05月
·ISBN:7564112387/9787564112387
·条形码:9787564112387
·版本:第1版
·装帧:平装
·开本:12
·正文语种:英语
·外文书名:Head First C#
内容简介 《深入浅出C#》是包含面向对象编程、C#和Visual Studio集成开发环境的一次完整学习经历。针对大脑学习的特点,《深入浅出C#(影印版)》涵盖了C# 3.0和Visual Studio 2008, 并且讲解了从垃圾收集到扩展方法再到双缓冲动画的所有内容。你将掌握C#的最新最热门的语法、LINQ、.NET集合数据查询、SQL数据库以及更多内容。学完《深入浅出C#(影印版)》之时,你将成为一个熟练的C#程序员,能够设计并编写大规模的应用程序。
我们认为你用来学习新概念的时间是极其宝贵的。《深入浅出C#》使用认知科学和学习理论的最新研究成果,为你带来多感官的学习体验,它采用了丰富、可视、适于大脑工作的形式,而不是用过多的文字使你感到昏昏欲睡。
作者简介 Andrew Stellman,despite being raised a New Yorker, has lived in Pittsburgh twice. The first time was when he graduated from Carnegie Mellon's School of Computer Science, and then again when he and Jenny were starting their consulting business and writing their first book for O'Reilly.
When he moved back to his hometown, his first job after college was as a programmer at EMI-Capitol Records——which actually made sense,since he went to LaGuardia High School of Music and Art and the Performing Arts to study cello and jazz bass guitar. He and Jenny first worked together at that same financial software company, where he was managing a team of programmers. He's had the privilege of working with some pretty amazing programmers over the years, and likes to think that he's learned a few things from them.
When he's not writing books, Andrew keeps himself busy writing useless (but fun) software,playing music (but video games even more),studying taiji and aikido, having a girlfriend named Lisa, and owning a pomeranian.
Jennifer Greene,studied philosophy in college but, like everyone else in the field, couldn't find a job doing it. Luckily, she's a great software tester, so she started out doing it at an online service, and that's the first time she really got a good sense of what project management was.
She moved to New York in 1998 to test software at a financial software company.She managed a team of testers at a really cool startup that did artificial intelligence and natural language processing.
Since then, she's traveled all over the world to work with different software teams and build all kinds of cool projects.
She loves traveling, watching Bollywood movies,reading the occasional comic book, waiting for her Xbox to be repaired, drinking carloads of carbonated beverages, and owning a whippet.
编辑推荐 《深入浅出C#(影印版)》是由东南大学出版社出版发行的。
目录 1 Get productive with C#: Visual Applications, in 10 minutes or less
2 It's All Just Code: Under the hood
3 Objects Get Oriented: Making code make sense
4 Types and References: It's 10:00. Doyou know whereyour data is?
C# Lab 1: A Day at the Races
5 Encapsulation: Keepyourprivates... private
6 Inheritance: 13ur object'sJhmily tree
7 Interfaces and abstract classes: Making classes keep their promises
8 Enums and collections: Storing lots of data
C# Lab 2: The Quest
9 Reading and writing fries: Save the byte array, save the world
10 Exception handling: Putting Out Fires Gets Old
11 Events and delegates: What 13ur Code Does When you're Not Looking
12 Review and preview: Knowledge, Power, and Building Cool Stuff
13 Controls and graphics: Make it pretty
14 Captain Amazing: The Death of the Object
15 LINQ:Get control of your data
C# Lab3:Invaders
Appendix i:Leftovers
Table of Contents(the real thing)
Intro
Who is this book for?
We know what you're thinking
Metacognition
Bend your brain into submission
What you need for this book
Read me
The technical review team
Acknowledgments
……
文摘 插图:

A: No. The IDE is great at automatically generating some code for you, but it can only do so much.There are some things it's really good at, like setting up good starting points for you,and automatically changing properties of controls on your forms. But the hard part of programming——figuring what your program needs to do and making it do it-is something that no IDE can do for you. Even though the Visual Studio IDE is one of the most advanced development environments out there, it can only go so far.It's you-not the IDE-who writes the code that actually does the work.
Q:l created a new project in Visual Studio, but when I went into the "Projects"folder under My Documents, I didn't see it there. What gives?
A:First of all, you must be using Visual Studio 2008——in 2005, this doesn't happen.When you first create a new project in Visual Studio 2008, the IDE creates the project in your Local Settings\Application Data\Temporary Projects folder. When you save the project for the first time,it will prompt you for a new filename, and save it in the My Documents\Visual Studio 2008\Projects folder. If you try to open a new project or close the temporary one, you'll be prompted to either save or discard the temporary project.
Q:What if the IDE creates code I don't want in my project?
A: You can change it. The IDE is set up to create code based on the way the element you dragged or added is most commonly used. But sometimes that's not exactly what you wanted. Everything the IDE does for you-every line of code it creates, every file it adds——can be changed, either manually by editing the files directly or through an easy-to-use interface in the IDE.
Q:Is it OK that I downloaded and installed Visual Studio Express? or do I need to use one of the versions of Visual Studio that isn't free in order to do everything in this book?
A:There's nothing in this book that you can't do with the free ve
……