Articoli correlati a Pro Visual C++/CLI And the .net 2.0 Platform

Pro Visual C++/CLI And the .net 2.0 Platform - Rilegato

 
9781590596401: Pro Visual C++/CLI And the .net 2.0 Platform
Vedi tutte le copie di questo ISBN:
 
 

This book explains how to write .NET 2.0 applications and services. It provides you with a clean slate, erasing the need for developing the COM, DCOM, COM+, or ActiveX components that used to be a necessity. Instead, youll learn how to write .NET applications using C++/CLI.

This book is based on its highly successful predecessor, and bridges the gap between classic C++ and C++/CLI. Furthermore, this edition is based on the newest version of Visual Studio .NET (2005) and .NET Platform version 2.0. And all topic areas include specific code examples. By the end of the book, you will be proficient in developing .NET applications and services for both the Windows desktop and the Web.

Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.

L'autore:
strongStephen R.G. Fraser/strong has over 15 years of information technology experience working for a number of consulting companies, ranging from the large consulting firms of Electronic Data Systems and Andersen Consulting (Accenture) to a number of smaller e-business companies. His IT experience covers all aspects of application and web development and management, ranging from initial concept all the way through to deployment. Stephen resides with his beautiful wife, Sarah, and daughter, Shaina, in the Silicon Valley.
Contenuti:
Pro Visual C++/CLI and
the .NET 2.0 Platform
■ ■ ■
Stephen R. G. Fraser
Pro Visual C++/CLI and the .NET 2.0 Platform
Copyright © 2006 by Stephen R.G. Fraser
All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means,
electronic or mechanical, including photocopying, recording, or by any information storage or retrieval
system, without the prior written permission of the copyright owner and the publisher.
ISBN: 1-59059-640-4
Library of Congress Cataloging-in-Publication data is available upon request.
Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1
Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence
of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark
owner, with no intention of infringement of the trademark.
Lead Editor: Ewan Buckingham
Technical Reviewer: Don Reamey
Editorial Board: Steve Anglin, Dan Appleman, Ewan Buckingham, Gary Cornell, Tony Davis, Jason Gilmore,
Jonathan Hassell, Chris Mills, Dominic Shakeshaft, Jim Sumser
Project Managers: Laura Cheu, Richard Dal Porto
Copy Edit Manager: Nicole LeClerc
Copy Editors: Freelance Editorial Services, Ami Knox, Liz Welch
Assistant Production Director: Kari Brooks-Copony
Production Editor: Katie Stence
Compositor: Susan Gilnert
Proofreader: Elizabeth Berry
Indexer: John Collin
Artist: April Milne
Interior Designer: Van Winkle Design Group
Cover Designer: Kurt Krames
Manufacturing Director: Tom Debolski
Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor,
New York, NY 10013. Phone 1-800-SPRINGER, fax 201-348-4505, e-mail orders-ny@springer-sbm.com, or
visit http://www.springeronline.com.
For information on translations, please contact Apress directly at 2560 Ninth Street, Suite 219, Berkeley, CA
94710. Phone 510-549-5930, fax 510-549-5939, e-mail info@apress.com, or visit http://www.apress.com.
The information in this book is distributed on an “as is” basis, without warranty. Although every precaution
has been taken in the preparation of this work, neither the author(s) nor Apress shall have any liability to
any person or entity with respect to any loss or damage caused or alleged to be caused directly or indirectly
by the information contained in this work.
The source code for this book is available to readers at http://www.apress.com in the Source Code section.
You will need to answer questions pertaining to this book in order to successfully download the code.
v
Contents at a Glance
Foreword by Stanley B. Lippman . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxi
About the Author . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxxi
About the Technical Reviewer . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .xxxiii
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxxv
PART 1 ■ ■ ■ The C++/CLI Language
■CHAPTER 1 Overview of the .NET Framework . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
■CHAPTER 2 C++/CLI Basics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
■CHAPTER 3 Object-Oriented C++/CLI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 85
■CHAPTER 4 Advanced C++/CLI . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 139
PART 2 ■ ■ ■ .NET Framework Development
in C++/CLI
■CHAPTER 5 The .NET Framework Class Library . . . . . . . . . . . . . . . . . . . . . . . . . . 193
■CHAPTER 6 Integrated XML Documentation . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 217
■CHAPTER 7 Collections . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 241
■CHAPTER 8 Input, Output, and Serialization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 279
■CHAPTER 9 Basic Windows Forms Applications . . . . . . . . . . . . . . . . . . . . . . . . . . 309
■CHAPTER 10 Advanced Windows Forms Applications . . . . . . . . . . . . . . . . . . . . . . 377
■CHAPTER 11 Graphics Using GDI+ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 445
■CHAPTER 12 ADO.NET and Database Development . . . . . . . . . . . . . . . . . . . . . . . . 515
■CHAPTER 13 XML . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 559
■CHAPTER 14 Windows Services . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 605
■CHAPTER 15 Web Services . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 635
■CHAPTER 16 Multithreaded Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 661
vi ■CONTENTS AT A GLANCE
■CHAPTER 17 Network Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 695
■CHAPTER 18 Assembly Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 729
■CHAPTER 19 Security . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 775
PART 3 ■ ■ ■ Unsafe/Unmanaged C++/CLI
■CHAPTER 20 Unsafe C++ .NET Programming . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 805
■CHAPTER 21 Advanced Unsafe or Unmanaged C++ .NET Programming . . . . . 825
■INDEX . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 847

Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.

  • EditoreApress
  • Data di pubblicazione2006
  • ISBN 10 1590596404
  • ISBN 13 9781590596401
  • RilegaturaCopertina rigida
  • Numero di pagine917
  • Valutazione libreria

Altre edizioni note dello stesso titolo

9781484220887: Pro Visual C++/Cli and the .net 2.0 Platform

Edizione in evidenza

ISBN 10:  1484220889 ISBN 13:  9781484220887
Casa editrice: Apress, 2016
Brossura

I migliori risultati di ricerca su AbeBooks

Foto dell'editore

Fraser, Stephen R.G.
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: 1
Da:
GoldBooks
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Hardcover. Condizione: new. New Copy. Customer Service Guaranteed. Codice articolo think1590596404

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 27,14
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,97
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Fraser, Stephen R.G.
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: 1
Da:
Front Cover Books
(Denver, CO, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: new. Codice articolo FrontCover1590596404

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 28,99
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 4,02
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Fraser, Stephen R.G.
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: > 20
Da:
Lucky's Textbooks
(Dallas, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Codice articolo ABLIING23Mar2811580082186

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 58,49
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 3,73
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Fraser, Stephen R.G.
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: 1
Da:
BennettBooksLtd
(North Las Vegas, NV, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. New. In shrink wrap. Looks like an interesting title! 3.7. Codice articolo Q-1590596404

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 60,02
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 6,42
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Stephen R. G. Fraser ,
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: 1
Da:
Basi6 International
(Irving, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: Brand New. New. US edition. Expediting shipping for all USA and Europe orders excluding PO Box. Excellent Customer Service. Codice articolo ABEOCT23-314604

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 70,30
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Stephen R. G. Fraser ,
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: 1
Da:
Romtrade Corp.
(STERLING HEIGHTS, MI, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New Original US Edition.We Ship to PO BOX Address also. EXPEDITED shipping option also available for faster delivery.This item may ship from the US or other locations in India depending on your location and availability. Codice articolo ABTR-280432

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 70,30
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Stephen R. G. Fraser ,
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: 1
Da:
SMASS Sellers
(IRVING, TX, U.S.A.)
Valutazione libreria

Descrizione libro Condizione: New. Brand New Original US Edition. Customer service! Satisfaction Guaranteed. This item may ship from the US or our Overseas warehouse depending on your location and stock availability. We Ship to PO BOX Location also. Codice articolo ABRR-280432

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 72,73
Convertire valuta

Aggiungere al carrello

Spese di spedizione: GRATIS
In U.S.A.
Destinazione, tempi e costi
Foto dell'editore

Stephen R. G. Fraser
Editore: Springer (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: > 20
Print on Demand
Da:
Ria Christie Collections
(Uxbridge, Regno Unito)
Valutazione libreria

Descrizione libro Condizione: New. PRINT ON DEMAND Book; New; Fast Shipping from the UK. No. book. Codice articolo ria9781590596401_lsuk

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 66,80
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 11,62
Da: Regno Unito a: U.S.A.
Destinazione, tempi e costi
Immagini fornite dal venditore

Stephen R.G. Fraser
Editore: Apress (2006)
ISBN 10: 1590596404 ISBN 13: 9781590596401
Nuovo Rilegato Quantità: > 20
Da:
moluna
(Greven, Germania)
Valutazione libreria

Descrizione libro Gebunden. Condizione: New. strongStephen R.G. Fraser/strong has over 15 years of information technology experience working for a number of consulting companies, ranging from the large consulting firms of Electronic Data Systems and Andersen Consulting (Accenture) to a number of small. Codice articolo 458520214

Informazioni sul venditore | Contatta il venditore

Compra nuovo
EUR 74,47
Convertire valuta

Aggiungere al carrello

Spese di spedizione: EUR 48,99
Da: Germania a: U.S.A.
Destinazione, tempi e costi