Pro .NET Framework with the Base Class Library -  Roger Villela

Pro .NET Framework with the Base Class Library (eBook)

Understanding the Virtual Execution System and the Common Type System
eBook Download: PDF
2019 | 1st ed.
XV, 251 Seiten
Apress (Verlag)
978-1-4842-4191-2 (ISBN)
Systemvoraussetzungen
36,99 inkl. MwSt
  • Download sofort lieferbar
  • Zahlungsarten anzeigen
Learn about the fundamentals and inner workings of the Common Type System (CTS) and the Virtual Execution System (VES) of the Common Language Runtime (CLR) and how they relate to the Base Class Library (BCL) from the perspective of the execution environment.

The author first gives an introduction to the .NET Framework and describes the architectural and engineering resources required when implementing the .NET Framework on any platform. Next, you will learn about the BCL and understand how to work with system structures including the fundamental built-in types system.array and system.string. You will then learn about the VES along with its methods and functionality. Further, you will go through the Common Intermediate Language (CIL), Assembly Manifest, and versioning. You will also learn how to design and implement libraries in detail by creating a .NET class library. 

After reading this book, you will understand .NET Framework features, as well as details  about the core functionalities of the VES and elements of the CTS.

What You Will Learn
  • Discover details of the Common Type System (CTS)
  • Work with the Virtual Execution System (VES)
  • See the importance of correct use of fundamental built-in managed types
  • Carry out good programming practice in a managed environment 
  • Implement a .NET class library
Who Is This Book For

Developers who are working with the .NET Framework on Windows. 



Roger Villela is a software engineer with 30 years of experience in the industry. He now works as a professional technical educator in his own firm that specializes in the inner workings of the following Microsoft development platforms: the Windows operating system, Universal Windows Platform (UWP), and the .NET Framework. He has worked with various tech companies, and now base his work on Microsoft Visual Studio 2017 with Microsoft Visual C++/CLI projection, Component Extensions (C++/CX) projection, C++/WinRT, Intel Parallel Studio XE with Intel C++ (Microsoft Windows), and Assembly (Intel x86/Intel x64).
Learn about the fundamentals and inner workings of the Common Type System (CTS) and the Virtual Execution System (VES) of the Common Language Runtime (CLR) and how they relate to the Base Class Library (BCL) from the perspective of the execution environment.The author first gives an introduction to the .NET Framework and describes the architectural and engineering resources required when implementing the .NET Framework on any platform. Next, you will learn about the BCL and understand how to work with system structures including the fundamental built-in types system.array and system.string. You will then learn about the VES along with its methods and functionality. Further, you will go through the Common Intermediate Language (CIL), Assembly Manifest, and versioning. You will also learn how to design and implement libraries in detail by creating a .NET class library. After reading this book, you will understand .NET Framework features, as well as details  about the core functionalities of the VES and elements of the CTS.What You Will LearnDiscover details of the Common Type System (CTS)Work with the Virtual Execution System (VES)See the importance of correct use of fundamental built-in managed typesCarry out good programming practice in a managed environment Implement a .NET class libraryWho Is This Book ForDevelopers who are working with the .NET Framework on Windows. 

Roger Villela is a software engineer with 30 years of experience in the industry. He now works as a professional technical educator in his own firm that specializes in the inner workings of the following Microsoft development platforms: the Windows operating system, Universal Windows Platform (UWP), and the .NET Framework. He has worked with various tech companies, and now base his work on Microsoft Visual Studio 2017 with Microsoft Visual C++/CLI projection, Component Extensions (C++/CX) projection, C++/WinRT, Intel Parallel Studio XE with Intel C++ (Microsoft Windows), and Assembly (Intel x86/Intel x64).

Chapter 1:  .NET Framework Chapter Goal: If you are new with or have some experience with .NET Framework you must starts here. This chapter is an introduction for the content of the book and describes the architectural and the engineering resources that you'll should expect to be available in any implementation of the .NET Framework, in any platform of hardware / operating system or executive 

·         Chapter 2: Base Class Library

Chapter goal: The BCL - Base Class Library (core set) is also known as "synonymous" for .NET FCL - Framework Class Library (complete set). But it is important to understand that this is not correct. The .NET FCL - Framework Class Library (complete set) is the name that is used in documentation when it describes what you known as .NET Framework Class Library. As the name implies, the purpose of BCL - Base Class Library (core set) is to provide the FOUNDATIONAL LIBRARY with managed types (reference types and value types) that give access for what is known as system functionalities. The system functionalities means not only the platform itself, but operating system base functionalities and even functionalities of some specialized resources of the operating system. This FOUNDATIONAL LIBRARY is organized in a few assemblies to facilitate the use and distribution. For example, the mscorlib (in mscorlib.dll), System (System.dll / .netstandard.dll / System.Runtime.dll), and System.Xml (System.Xml.dll) assemblies concentrates the most fundamental types and functionalities, data structures, and functionalities which are used by any kind of application. This assemblies includes API - Application Programming Interfaces that are CLS-compliant and API - Application Programming Interfaces that are not CLS-compliant.

·         Chapter 3:   Virtual Execution System (VES) – Equals and Clone operations 

Chapter goal: As you learned in Chapter 1 - .NET Framework and Chapter 2 - BCL - Base Class Library, the fundamental types array and string are part of any kind of application targeting an implementation of .NET. But some behaviors available within these types come from the VES – Virtual Execution System and expressed through methods and functionalities that are implicitly available. For example, ref classes / ref structs, and value classes / value structs derives from the root reference type System::Object, implicitly or explicitly. So, ref classes / ref structs, and value classes / value structs inherit some of the fundamental behaviors designed and described by CTS - Common Type System, which are implemented and enforced by VES – Virtual Execution System. Just to remember, by definition, ref classes / ref structs are compared by reference, which means that for being considered equal, two or more references must point for the same instance.

·         Chapter 4:  Programming with Common Intermediate Language (CIL)

Chapter goal: In this chapter you will learn more details about the CTS - Common Type System and VES – Virtual Execution System, that is, more about how the execution environment deals with the types and structural elements of the platform. We use code written directly in CIL - Common Intermediate Language to explain more details about the use of the types and to better understands some internal aspects of the execution environment.

·         Chapter 5: Assembly Manifest and Versioning

Chapter goal:  In this chapter we will learn about the metadata system and the importance to the CTS - Common Type System and VES – Virtual Execution System. For this, we uses one of the critical structural and behavioral elements of the platform, the ASSEMBLY MANIFEST. We will also begin learning about the versioning system and how the VES – Virtual Execution System works with it.

·         Chapter 6: Designing and Implementing Libraries

Chapter goal: In this chapter we will learn about some foundational elements to design and to implement a .NET Class Library. We use the .NET Standard 2.0 to create our .NET Class Library. We continue learning about aspects of versioning and versioning binding.

·         Appendix A: Advanced Operations

Chapter goal: In this chapter we will learn about peculiarities of the execution system when dealing with class libraries, about decisions when using native programming languages and managed programming languages.

Erscheint lt. Verlag 18.2.2019
Zusatzinfo XV, 251 p. 57 illus.
Verlagsort Berkeley
Sprache englisch
Themenwelt Mathematik / Informatik Informatik Programmiersprachen / -werkzeuge
Mathematik / Informatik Informatik Software Entwicklung
Informatik Theorie / Studium Compilerbau
Schlagworte Base Class Library • BCL • Framework • .NET • Strings • Windows10
ISBN-10 1-4842-4191-6 / 1484241916
ISBN-13 978-1-4842-4191-2 / 9781484241912
Haben Sie eine Frage zum Produkt?
PDFPDF (Wasserzeichen)
Größe: 5,6 MB

DRM: Digitales Wasserzeichen
Dieses eBook enthält ein digitales Wasser­zeichen und ist damit für Sie persona­lisiert. Bei einer missbräuch­lichen Weiter­gabe des eBooks an Dritte ist eine Rück­ver­folgung an die Quelle möglich.

Dateiformat: PDF (Portable Document Format)
Mit einem festen Seiten­layout eignet sich die PDF besonders für Fach­bücher mit Spalten, Tabellen und Abbild­ungen. Eine PDF kann auf fast allen Geräten ange­zeigt werden, ist aber für kleine Displays (Smart­phone, eReader) nur einge­schränkt geeignet.

Systemvoraussetzungen:
PC/Mac: Mit einem PC oder Mac können Sie dieses eBook lesen. Sie benötigen dafür einen PDF-Viewer - z.B. den Adobe Reader oder Adobe Digital Editions.
eReader: Dieses eBook kann mit (fast) allen eBook-Readern gelesen werden. Mit dem amazon-Kindle ist es aber nicht kompatibel.
Smartphone/Tablet: Egal ob Apple oder Android, dieses eBook können Sie lesen. Sie benötigen dafür einen PDF-Viewer - z.B. die kostenlose Adobe Digital Editions-App.

Buying eBooks from abroad
For tax law reasons we can sell eBooks just within Germany and Switzerland. Regrettably we cannot fulfill eBook-orders from other countries.

Mehr entdecken
aus dem Bereich
An In-Depth Guide to the Spring Framework

von Iuliana Cosmina; Rob Harrop; Clarence Ho; Chris Schaefer

eBook Download (2023)
Apress (Verlag)
62,99
From Beginner to Pro

von German Gonzalez-Morris; Ivor Horton

eBook Download (2024)
Apress (Verlag)
66,99