Buy Programming in the .NET Environment at Bookstore UAE
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Book 1
Book 2
Book 3
Home > Computing and Information Technology > Digital Lifestyle and online world: consumer and user guides > Internet guides and online services > Programming in the .NET Environment: (Microsoft Windows Development Series)
Programming in the .NET Environment: (Microsoft Windows Development Series)

Programming in the .NET Environment: (Microsoft Windows Development Series)


     0     
5
4
3
2
1



Out of Stock


Notify me when this book is in stock
X
About the Book

Programming in the .NET Environment is the software developer's guide to the .NET Framework. The authors describe Microsoft's vision for distributed component-based systems development and then show programmers how to develop software that takes full advantage of the features of the .NET Framework. Readers learn how to author components, libraries, and frameworks that not only exploit the capabilities of the .NET Framework but also integrate seamlessly into that environment.This book begins with an introduction to the goals and architecture of the .NET Framework. Readers will then gain a thorough understanding of the type, metadata, and execution systems; learn how to build and deploy their components within .NET assemblies; and gain an understanding of the facilities of the Framework Class Libraries. Topic coverage includes:The Common Language Runtime (CLR) and the Framework Class LibrariesThe CLR's Type, Metadata, and Execution SystemsCreating and deploying .NET AssembliesInternationalization and localization facilities.NET Languages, including C # and Visual Basic .NETThe book concludes with appendixes written by other specialists in the field: Paul Vick (writing about VB .N ET), Eric Gunnerson (on C #), Mark Hammond (on Python for .NET), Jan Dubois (on Perl for .NET), John Gough (on Component Pascal for .NET), Pankaj Surana (on Scheme for .NET), Nigel Perry (on Mondrian), and Juerg Gutknecht (on Active Oberon for .NET).Written by a team of experienced authors using a practical, authoritative approach, Programming in the .NET Environment is an indispensable guide to developing components that fulfill the promise of Microsoft's .NET Framework.Books in the Microsoft .NET Development Series are written and reviewed by the principal authorities and pioneering developers of the Microsoft .NET technologies, including the Microsoft .NET development team and DevelopMentor. Books in the Microsoft .NET Development Series focus on the design, architecture, and implementation of the Microsoft .NET initiative to empower developers and students everywhere with the knowledge they need to thrive in the Microsoft .NET revolution. 0201770180B10312002

Table of Contents:
(NOTE: Each chapter concludes with a Summary.) Foreword. Preface. 1. Introducing the .NET Framework. Programming Issues. Programming in the Small. Programming in the Large. Solutions. Comparing the .NET Framework and IDL-Based Systems. Elements of the .NET Framework. Common Language Runtime. Base Framework. Exposing the .NET Framework. Windows Clients. ASP.NET: Web Forms. ASP.NET: Web Services. Terminology. The Type System. The Metadata System. The Execution System. Example: Hello World. 2. The Type System. The Relationship Between Programming Languages and Type Systems. The Evolution of Type Systems. Programming Language-Specific Type Systems. The Design Challenge: Development of a Single Type System for Multiple Languages. CLR-Programming Language Interaction: An Overview. Elements of the CLR Type System. Value Types. Built-in Value Types. User-Defined Value Types. Reference Types. Object Types. Interface Types. Pointer Types. Example: User-Defined Object Type. Example: Use of Interfaces on Value Types. Assignment Compatibility. Nested Types. Visibility. Accessibility. 3. The Metadata System. Medata Issues. Saving Metadata About Types: IDL Files. Reflection: Inspection of a Type's Metadata. Reflection Classes. Example: Using Reflection. Example: Use of Type as an Abstract Type. Metadata Tools and Extensions. A Tool for Reading Metadata. Metadata Extensibility. Dynamic Discovery of Types. Assemblies and Manifests. Meta-Programming. Metadata File Format. COM Interop. 4. The Execution System. The Execution System Versus Other—Component Models. Intermediate Language. Example: Generating Intermediate Language. Verification of Intermediate Language. Starting a CLR Program. COR Debugger. Application Domains. Memory Management. Value Types Versus Reference Types. Garbage Collection. Security. Role-Based Security. Evidence-Based Security. Policy Manager. Code Groups. Named Permission Sets. Policy Assemblies. Examining Policy Levels and Permission Sets. Stack Walks. Declarative and Imperative Style. 5. Building Applications. Existing Technologies to Solve Application-Related Problems. Well-Known Locations. Search Paths. Symbolic Names. Versioning-Related Technologies. Windows Registry. Assemblies. Example: A Simple Assembly. Version 1 of AboutBox. Building the Assembly with nmake and makefile. Functioning of the makefile. Embedded and Linked Resources. Example: A .NET Assembly with Embedded Resources. Example: A .NET Assembly with Linked Resources. The Assembly Linker. Public and Private Assemblies. Strong Names. Assembly Caches. Example: Creating and Using Public Assemblies. Assembly Versioning. Example: Building a Second Version of an Assembly. Example: Binding to a Different Version of an Assembly. Internalization and Localization. Definitions. Existing Technologies: Separation of Code and User Interfaces. .NET Localization Concepts. Example: A Localized Application. Application Domains. Application Domains Versus Processes. Use of Application Domains. Example: Retrieving Current Application Domain Information. Example: Creating and Manipulating Application Domains. Example: Loading Assemblies into Application Domains. 6. Deploying Applications. Configuration Files. Text-Based Configuration Files. CLR Configuration Files. Which Configuration Files to Use? Downloading Web Content. Referencing Assemblies with the codeBase Element. The Download Cache Revisited. Web Controls. Installing Applications. Copying Files to the Computer. Downloading Files to the Computer. Using Traditional Installation Programs. Installing the .NET Framework. The ECMA CLI Standards. Compact Framework. Smart Device Extensions. Shared Source Common Language Infrastructure. 7. The Framework Class Library. A Historical Perspective. C/C++. SmallTalk. LISP. C++. Java. Support for Multiple Programming Languages. Goals of the .NET Framework. Unify Programming Models. Be Factored and Extensible. Integrate with Web Standards and Practices. Make Development Simpler. Design Guidelines. Naming Guidelines. Member Usage. Namespaces. System. System.Collections. System.Data. System.Globalization. System.Resources. System.IO. System.Net. System.Reflection. System.Security. System.Text. System.Threading. System.Runtime.InteropServices. System.Windows.Forms. System.Web. System.Web.Services. System.Xml. Looking Back and Looking Ahead. Appendix A: Visual Basic .NET. Type System Additions. Classes. Inheritance. Overloading. Namespaces. Type System Modifications. Arrays. Variant and Object Types. Structures. Date, Currency, and Decimal Types. Platform Changes. Deterministic Finalization and Garbage Collection. Let and Set Assignment. Late Binding. On Error and Structured Exception Handling. Events and Delegates. Language Cleanup. New Features. Future Directions. Conclusions. Appendix B: C#. History and Design Goals. A Brief History of C++ and C#. C# Design Goals. The C# Type System. Reference Versus Value Types. User-Defined Types. Component-Oriented Development. Properties. Indexers. Operator Overloading. Attributes. Delegates. Events. Unsafe Code. Advanced Interoperability. Dealing with Existing Structures. Performance Extremes. Neat Things. foreach. switch on String. params Arrays. XML Comments. A Stack Component Example. Future Directions. C# and Standardization. Conclusions. Appendix C: Python for .NET. A Brief Overview of Python. About Python. Python Implementations. Terminology. Python for .NET. Current Status. Architecture. Using Python for .NET. Example: Hello World. Using .NET Objects. Method Signatures and Overloads. Other Examples of Compiler Techniques. Limitations of Python for .NET. Performance. Closed World Syndrome. Class and Instance Semantics. Type Declarations or Inference for Speed. Type Declarations for Semantics. Possible .NET and Python Enhancements. Type Declarations. Dynamic Language Support. Alternative Implementation Strategies. Python for .NET. The Compiler. The Runtime. The Library. Conclusions. Appendix D: Perl and the .NET Runtime. Perl for .NET Research Compiler. The Parser. The Code Generator. The Runtime Library. PerlNET Component Builder. Interface with Standard Perl Interpreter. Challenges. Supported .NET Features. PerlNET Status. Example: A Windows Forms Application. Conclusions. Appendix E: Component Pascal on the CLR. About Component Pascal. The Type System. Statements. Module Structure. Mapping to the CLR. Mapping the Program Structure. The Synthetic Static Class. Controlling Visibility. Mapping the Type System. Static Record Types. Dispatched Methods. Semantic Challenges. Nonlocal Addressing. Structural Compatibility of Delegates. Covariant Function Types. Conclusions. Compatibility Extensions. Performance. Notes. Appendix F: Hotdog: Compiling Scheme to Object-Oriented Virtual Machines. Introduction to the Hotdog Scheme Compiler. Scheme, Briefly. Object-Oriented Virtual Machines. Implementations. Closures. Small Values. Dynamic Type Checking. Limitations. Performance Improvements. Conclusions. References. Appendix G: Functional Languages for the .NET Framework. A Brief Introduction to Mondrian. The Type System. Exception Handling. Concurrency Support. The Syntax. Types in Mondrian. Primitive Types. Type Products. Type Unions. Parametric Types. Functions in Mondrian. Monomorphic Functions. Polymorphic Functions. Partial Applications. Just-in-Time Evaluation. Calling Other CLR-Hosted Languages. The Power of .NET: A Multilanguage Example. The Sieve of Eratosthenes in C#. The Sieve: Combining Mondrian and C#. A Glimpse into the Future: Improving the Interface. Conclusions. References. Appendix H: Active Oberon for .NET: A Case Study in Language Model Mapping. History of the ETH Programming Languages. The Active Object System. An Extended Concept of Object Types. A Unified Concept of Abstractions. A Concept of Static Modules. The Mapping to the Common Type System. Recapitulation of the .NET Interoperability Framework. Mapping Modules. Mapping Definitions. Interoperability. Mapping Active Behavior. Language Fitting. Summary and Conclusions. Acknowledgments. References. Glossary. Suggested Reading List. Index. 0201770180T10292002

About the Author :
Damien Watkins is the founder of Project 42, a consulting company specializing in the development of Component Based Systems for the Internet. Until 2002 he was a lecturer at Monash University in Melbourne, Australia. Damien became involved with the development of the .NET Framework in 1998 when Microsoft invited Monash University to join Project 7, an early access program for .NET. Mark Hammond has been an independent software consultant since 1995. He has produced many of the Windows extensions for Python, including PythonWin, Active Scripting and Active Debugging support, and coauthored the Python/COM framework and extensions. In 2000 he published his first book, Python Programming on Win32, and from 1999 through 2001 developed the first .NET implementation of the Python language. Brad Abrams was a founding member of both the Common Language Runtime and .NET Framework teams at Microsoft, where he is currently a Lead Program Manager. Brad has been involved with WinFX and Windows Vista efforts from the beginning. His primary role is to ensure consistency and developer productivity of the .NET Framework through Vista and beyond. His popular blog can be found at http://blogs.msdn.com/BradA/.


Best Sellers


Product Details
  • ISBN-13: 9780201770186
  • Publisher: Pearson Education Limited
  • Publisher Imprint: Addison Wesley
  • Height: 187 mm
  • Returnable: N
  • Spine Width: 34 mm
  • Width: 234 mm
  • ISBN-10: 0201770180
  • Publisher Date: 14 Nov 2002
  • Binding: Paperback
  • Language: English
  • Series Title: Microsoft Windows Development Series
  • Weight: 953 gr


Similar Products

Add Photo
Add Photo

Customer Reviews

REVIEWS      0     
Click Here To Be The First to Review this Product
Programming in the .NET Environment: (Microsoft Windows Development Series)
Pearson Education Limited -
Programming in the .NET Environment: (Microsoft Windows Development Series)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

Programming in the .NET Environment: (Microsoft Windows Development Series)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    Fresh on the Shelf


    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!