Cargando…

Exploring the .NET Core 3.0 runtime : through code generation and metadata inspection /

"Explore advanced .NET APIs and create a basic .NET core library with dynamic code generation and metadata inspection to be used by other libraries or client applications. This book starts with the benefits of .NET including its fundamental tasks and tools where you will learn .NET SDK tools an...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Villela, Roger (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: New York : Apress, [2019]
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Intro; Table of Contents; About the Author; About the Technical Reviewer; Acknowledgments; Introduction; Chapter 1: Exploring .NET Core; Acronyms; About the .NET Core Platform; Microsoft Visual Studio 2019 Support for .NET Core; Tutorial: Using .NET Core SDK Previews and configurations; Configuration for Using the .NET Core SDK Previews; Adding a Class Library (.NET Core) Project; Choosing the Target .NET Core SDK; Changing the Project Config File; Using a TFM on the Project Config File; Using .NET Standard; List of TFMs; Summary; Do's; Don'ts; Chapter 2: About Static .NET Assembly; Acronyms
  • Development EnvironmentThe Static .NET Assembly; Metadata System; Metadata System Organization; About the .NET Assembly Manifest; Summary; Do's; Don'ts; Chapter 3: Dynamic .NET Assemblies: Defining Dynamic .NET Types; About Dynamic Assemblies; Organization of RVJ. Core .NET Types; Purpose of .NET Types; .NET Type Interfaces; Builders of the System. Reflection. Emit Namespace; The Flags and Definition of .NET Types; About System. Reflection. Emit Type Builders; Using an Assembly Type Builder; Naming the Dynamic .NET Assembly; AssemblyBuilderAccess Enum Options; Defining a Dynamic .NET Type
  • Defining Dynamic .NET Field Members for a Dynamic .NET TypeInstantiating a Dynamic .NET Type and Assigning a Value for a Dynamic .NET Field; Summary; Do's; Don'ts; Chapter 4: Working with Dynamic .NET Properties; About Dynamic .NET Properties; The Getter and Setter Methods; The Other Methods; The Prefixes get_ and set_; The specialname and rtspecialname Attributes; Implementing a Dynamic .NET Property; Summary; Do's; Don'ts; Chapter 5: Working with the CodeDOM; About the CodeDOM; Code Generation Using the CodeDOM; Summary; Do's; Don'ts; Index