glossary_of_c_sharp_dot_net_programming_language_terms

Glossary of C Sharp dot NET Programming Language Terms

Glossary of C Sharp Programming Language Terms

Return to C# .NET

Return to Glossary of Asynchronous C Sharp Terms, Glossary of Functional C Sharp Terms, C Sharp, Glossary of React.js Terms, Glossary of Node.js Terms, Glossary of Deno Terms, Glossary of Vue.js Terms, Glossary of C Sharp Programming Language Terms, C Sharp Bibliography, C Sharp Android Development, C Sharp Courses, C Sharp DevOps - C Sharp CI/CD, C Sharp Security - C Sharp DevSecOps, C Sharp Functional Programming, C Sharp Concurrency, C Sharp Data Science - C Sharp and Databases, C Sharp Machine Learning, Android Development Glossary, Awesome C Sharp, C Sharp GitHub, C Sharp Topics


C Sharp Glossary: Provide me first with the most commonly used terms. Give the related RFC number in double brackets glossary_of_c_sharp_dot_net_programming_language_terms. Always give at least 10 terms (1 paragraph for each term) in every response without exception. Do NOT number the terms. Provide the terms sorted by the most commonly used. NEVER use ** around a word or acronym, only use double brackets. Always include double brackets glossary_of_c_sharp_dot_net_programming_language_terms around all product names, acronyms, RFC numbers, and technical terms. Never use boldface, italics, lists, or bullet points – strictly plain text with no extra formatting. YOU MUST PROVIDE A URL SOURCE: Only provide URLs from Wikipedia, GitHub, or official documentation – no other URLs are acceptable. Be sure you VERIFY that these are valid Wikipedia URLs. URLs must be RAW, no formatting, no double bracket surrounding it. Each URL must be separated by 2 carriage returns. In this glossary, your responses DO NOT need a topic introduction titled “==Topic Name==” and DO NOT need a conclusion titled “==Conclusion==”. No mistakes are acceptable in applying these rules, and failing to meet these instructions will not count against your usage quota. Adherence to these rules is critical, and you must keep context and follow instructions without deviation.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.


Give me 10 more. Do not repeat yourself.

.NET Glossary

05/04/2023

14 minutes to read

The primary goal of this glossary is to clarify meanings of selected terms and acronyms that appear frequently in the .NET documentation.

See CoreRT and .NET Native.

  • app model - A workload-specific API. Here are some examples:

ASP.NET ASP.NET Web API Entity Framework (EF) Windows Presentation Foundation (WPF) Windows Communication Foundation (WCF) Windows Workflow Foundation (WF) Windows Forms (WinForms)


  • ASP.NET - The original ASP.NET implementation that ships with the .NET Framework, also known as ASP.NET 4.x.

Sometimes ASP.NET is an umbrella term that refers to both the original ASP.NET and ASP.NET Core. The meaning that the term carries in any given instance is determined by context. Refer to ASP.NET 4.x when you want to make it clear that you're not using ASP.NET to mean both implementations.

See ASP.NET documentation.


  • ASP.NET Core - A cross-platform, high-performance, open-source implementation of ASP.NET.

See ASP.NET Core documentation.


  • assembly - A .dll or .exe file that can contain a collection of APIs that can be called by applications or other assemblies.

An assembly may include types such as interfaces, classes, structures, enumerations, and delegates. Assemblies in a project's bin folder are sometimes referred to as binaries. See also library.

B


  • BCL - Base Class Library - A set of libraries that comprise the System.* (and to a limited extent Microsoft.*) namespaces. The BCL is a general purpose, lower-level framework that higher-level application frameworks, such as ASP.NET Core, build on.

The source code of the BCL for .NET 5 (and .NET Core) and later versions is contained in the .NET runtime repository. Most of these BCL APIs are also available in .NET Framework, so you can think of this source code as a fork of the .NET Framework BCL source code.

The following terms often refer to the same collection of APIs that BCL refers to:

core .NET libraries framework libraries runtime libraries shared framework


  • CLR - Common Language Runtime - The exact meaning depends on the context. Common Language Runtime usually refers to the runtime of .NET Framework or the runtime of .NET 5 (and .NET Core) and later versions.

A CLR handles memory allocation and management. A CLR is also a virtual machine that not only executes apps but also generates and compiles code on-the-fly using a JIT compiler.

The CLR implementation for .NET Framework is Windows only.

The CLR implementation for .NET 5 and later versions (also known as the Core CLR) is built from the same code base as the .NET Framework CLR. Originally, the Core CLR was the runtime of Silverlight and was designed to run on multiple platforms, specifically Windows and OS X. It's still a cross-platform runtime, now including support for many Linux distributions.

See also runtime.


  • Core CLR - The Common Language Runtime for .NET 5 (and .NET Core) and later versions.

See CLR.


  • CoreRT - In contrast to the CLR, CoreRT is not a virtual machine, which means it doesn't include the facilities to generate and run code on-the-fly because it doesn't include a JIT. It does, however, include the GC and the ability for run-time type identification (RTTI) and reflection. However, its type system is designed so that metadata for reflection isn't required. Not requiring metadata enables having an AOT tool chain that can link away superfluous metadata and (more importantly) identify code that the app doesn't use. CoreRT is in development.

See Intro to CoreRT and .NET Runtime Lab.


  • cross-platform - The ability to develop and execute an application that can be used on multiple different operating systems, such as Linux, Windows, and iOS, without having to rewrite specifically for each one. This enables code reuse and consistency between applications on different platforms.

See platform.


E

  • ecosystem - All of the runtime software, development tools, and community resources that are used to build and run applications for a given technology.

The term “.NET ecosystem” differs from similar terms such as “.NET stack” in its inclusion of third-party apps and libraries. Here's an example in a sentence:

“The motivation behind .NET Standard was to establish greater uniformity in the .NET ecosystem.”


F

  • framework - In general, a comprehensive collection of APIs that facilitates development and deployment of applications that are based on a particular technology. In this general sense, ASP.NET Core and Windows Forms are examples of application frameworks. The words framework and library are often used synonymously.

The word “framework” has a different meaning in the following terms:

framework libraries .NET Framework shared framework target framework TFM (target framework moniker) framework-dependent app Sometimes “framework” refers to an implementation of .NET. For example, an article may call .NET 5+ a framework.


  • framework libraries - Meaning depends on context. May refer to the framework libraries for .NET 5 (and .NET Core) and later versions, in which case it refers to the same libraries that BCL refers to. It may also refer to the ASP.NET Core framework libraries, which build on the BCL and provide additional APIs for web apps.

G

  • GC - Garbage collector - The garbage collector is an implementation of automatic memory management. The GC frees memory occupied by objects that are no longer in use.

See Garbage Collection.


I

One or more runtimes. Examples: CLR, CoreRT. A class library that implements a version of .NET Standard and may include additional APIs. Examples: the BCLs for .NET Framework and .NET 5 (and .NET Core) and later versions. Optionally, one or more application frameworks. Examples: ASP.NET, Windows Forms, and WPF are included in .NET Framework and .NET 5+. Optionally, development tools. Some development tools are shared among multiple implementations. Examples of .NET implementations:

.NET Framework .NET 5 (and .NET Core) and later versions Universal Windows Platform (UWP) Mono For more information, see .NET implementations.


J

  • JIT - Just-in-time compiler - Similar to AOT, this compiler translates IL to machine code that the processor understands. Unlike AOT, JIT compilation happens on demand and is performed on the same machine that the code needs to run on. Since JIT compilation occurs during execution of the application, compile time is part of the run time. Thus, JIT compilers have to balance time spent optimizing code against the savings that the resulting code can produce. But a JIT knows the actual hardware and can free developers from having to ship different implementations.

L

  • library - A collection of APIs that can be called by apps or other libraries. A .NET library is composed of one or more assemblies.

The words library and framework are often used synonymously.


M

  • Mono - Mono is an open source, cross-platform .NET implementation that is mainly used when a small runtime is required. It is the runtime that powers Xamarin applications on Android, Mac, iOS, tvOS, and watchOS and is focused primarily on apps that require a small footprint.

It supports all of the currently published .NET Standard versions.

Historically, Mono implemented the larger API of the .NET Framework and emulated some of the most popular capabilities on Unix. It is sometimes used to run .NET applications that rely on those capabilities on Unix.

Mono is typically used with a just-in-time compiler, but it also features a full static compiler (ahead-of-time compilation) that is used on platforms like iOS.

See the Mono documentation.


N

  • .NET - In general, .NET is the umbrella term for .NET Standard and all .NET implementations and workloads.

More specifically, .NET refers to the implementation of .NET that is recommended for all new development: .NET 5 (and .NET Core) and later versions.

For example, the first meaning is intended in phrases such as “implementations of .NET” or “the .NET development platform.” The second meaning is intended in names such as .NET SDK and .NET CLI.

.NET is always fully capitalized, never “.Net”.

See .NET documentation


  • .NET 5+ - The plus sign after a version number means “and later versions.” See .NET 5 and later versions.

  • .NET 5 and later versions - A cross-platform, high-performance, open-source implementation of .NET. Also referred to as .NET 5+. Includes a Common Language Runtime (CLR), an AOT runtime (CoreRT, in development), a Base Class Library (BCL), and the .NET SDK.

Earlier versions of this .NET implementation are known as .NET Core. .NET 5 is the next version following .NET Core 3.1. Version 4 was skipped to avoid confusing this newer implementation of .NET with the older implementation that is known as .NET Framework. The current version of .NET Framework is 4.8.

See .NET documentation.


  • .NET CLI - A cross-platform toolchain for developing applications and libraries for .NET 5 (and .NET Core) and later versions. Also known as the .NET Core CLI.

See .NET CLI.



  • .NET Framework - An implementation of .NET that runs only on Windows. Includes the Common Language Runtime (CLR), the Base Class Library (BCL), and application framework libraries such as ASP.NET, Windows Forms, and WPF.

See .NET Framework Guide.


Compilation happens on the developer's machine similar to the way a C++ compiler and linker works. It removes unused code and spends more time optimizing it. It extracts code from libraries and merges them into the executable. The result is a single module that represents the entire app.

UWP is the application framework supported by .NET Native.

See .NET Native documentation.


  • .NET SDK - A set of libraries and tools that allow developers to create .NET applications and libraries for .NET 5 (and .NET Core) and later versions. Also known as the .NET Core SDK.

Includes the .NET CLI for building apps, .NET libraries and runtime for building and running apps, and the dotnet executable (dotnet.exe) that runs CLI commands and runs applications.

See .NET SDK Overview.


  • .NET Standard - A formal specification of .NET APIs that are available in each .NET implementation.

The .NET Standard specification is sometimes called a library. Because a library includes API implementations, not only specifications (interfaces), it's misleading to call .NET Standard a “library.”

See .NET Standard.


  • NGEN - Native (image) generation - You can think of this technology as a persistent JIT compiler. It usually compiles code on the machine where the code is executed, but compilation typically occurs at install time.

P

  • package - A NuGet package — or just a package — is a .zip file with one or more assemblies of the same name along with additional metadata such as the author name.

The .zip file has a .nupkg extension and may contain assets, such as .dll files and .xml files, for use with multiple target frameworks and versions. When installed in an app or library, the appropriate assets are selected based on the target framework specified by the app or library. The assets that define the interface are in the ref folder, and the assets that define the implementation are in the lib folder.


  • platform - An operating system and the hardware it runs on, such as Windows, macOS, Linux, iOS, and Android.

Here are examples of usage in sentences:

“.NET Core is a cross-platform implementation of .NET.” “PCL profiles represent Microsoft platforms, while .NET Standard is agnostic to platform.” Legacy .NET documentation sometimes uses “.NET platform” to mean either an implementation of .NET or the .NET stack including all implementations. Both of these usages tend to get confused with the primary (OS/hardware) meaning, so we try to avoid these usages.

“Platform” has a different meaning in the phrase “developer platform,” which refers to software that provides tools and libraries for building and running apps. .NET is a cross-platform, open-source developer platform for building many different types of applications.


methods events delegates These objects are used primarily as data transfer objects (DTOs). A pure POCO will not inherit another object, or implement an interface. It's common for POCOs to be used with serialization.

See also: POJO - Plain Old Java Object


R

  • runtime - In general, the execution environment for a managed program. The OS is part of the runtime environment but is not part of the .NET runtime. Here are some examples of .NET runtimes in this sense of the word:

Common Language Runtime (CLR) .NET Native (for UWP) Mono runtime The word “runtime” has a different meaning in some contexts:

.NET runtime on the .NET 5 download page.

You can download the .NET runtime or other runtimes, such as the ASP.NET Core runtime. A runtime in this usage is the set of components that must be installed on a machine to run a framework-dependent app on the machine. The .NET runtime includes the CLR and the .NET shared framework, which provides the BCL.

.NET runtime libraries

Refers to the same libraries that BCL refers to. However, other runtimes, such as the ASP.NET Core runtime, have different shared frameworks, with additional libraries that build on the BCL.

Runtime Identifier (RID).

Runtime here means the OS platform and CPU architecture that a .NET app runs on, for example: linux-x64.

Sometimes “runtime” is used in the sense of an implementation of .NET, as in the following examples:

“The various .NET runtimes implement specific versions of .NET Standard. … Each .NET runtime version advertises the highest .NET Standard version it supports …” “Libraries that are intended to run on multiple runtimes should target this framework.” (referring to .NET Standard)


S

  • shared framework - Meaning depends on context. The .NET shared framework refers to the libraries included in the .NET runtime. In this case, the shared framework for .NET 5 (and .NET Core) and later versions refers to the same libraries that BCL refers to.

There are other shared frameworks. The ASP.NET Core shared framework refers to the libraries included in the ASP.NET Core runtime, which includes the BCL plus additional APIs for use by web apps.

For framework-dependent apps, the shared framework consists of libraries that are contained in assemblies installed in a folder on the machine that runs the app. For self-contained apps, the shared framework assemblies are included with the app.

For more information, see Deep-dive into .NET Core primitives, part 2: the shared framework.


S

  • stack - A set of programming technologies that are used together to build and run applications.

“The .NET stack” refers to .NET Standard and all .NET implementations. The phrase “a .NET stack” may refer to one implementation of .NET.


T

  • target framework - The collection of APIs that a .NET app or library relies on.

An app or library can target a version of .NET Standard (for example, .NET Standard 2.0), which is a specification for a standardized set of APIs across all .NET implementations. An app or library can also target a version of a specific .NET implementation, in which case it gets access to implementation-specific APIs. For example, an app that targets Xamarin.iOS gets access to Xamarin-provided iOS API wrappers.

For some target frameworks (for example, .NET Framework) the available APIs are defined by the assemblies that a .NET implementation installs on a system, which may include application framework APIs (for example, ASP.NET, WinForms). For package-based target frameworks, the framework APIs are defined by the packages installed in the app or library.

See Target Frameworks.


  • TFM - Target framework moniker - A standardized token format for specifying the target framework of a .NET app or library. Target frameworks are typically referenced by a short name, such as net462. Long-form TFMs (such as .NETFramework,Version=4.6.2) exist but are not generally used to specify a target framework.

See Target Frameworks.


U

  • UWP - Universal Windows Platform - An implementation of .NET that is used for building touch-enabled Windows applications and software for the Internet of Things (IoT). It's designed to unify the different types of devices that you may want to target, including PCs, tablets, phones, and even the Xbox. UWP provides many services, such as a centralized app store, an execution environment (AppContainer), and a set of Windows APIs to use instead of Win32 (WinRT). Apps can be written in C++, C#, Visual Basic, and JavaScript. When using C# and Visual Basic, the .NET APIs are provided by .NET 5 (and .NET Core) and later versions.

W

  • workload - A type of app someone is building. More generic than app model. For example, at the top of every .NET documentation page, including this one, is a drop-down list for Workloads, which lets you switch to documentation for Web, Mobile, Cloud, Desktop, and Machine Learning & Data.

In some contexts, workload refers to a collection of Visual Studio features that you can choose to install to support a particular type of app. For an example, see Select a workload.


See also

Fair Use Sources

C Sharp Vocabulary List (Sorted by Popularity)

C Sharp Programming Language, C Sharp Compiler, C Sharp Source Code, C Sharp Class, C Sharp Struct, C Sharp Interface, C Sharp Enum, C Sharp Delegate, C Sharp Event, C Sharp Method, C Sharp Property, C Sharp Field, C Sharp Indexer, C Sharp Constructor, C Sharp Destructor, C Sharp Static Constructor, C Sharp Nested Type, C Sharp Partial Class, C Sharp Partial Struct, C Sharp Partial Interface, C Sharp Partial Method, C Sharp Sealed Class, C Sharp Abstract Class, C Sharp Static Class, C Sharp Generic Class, C Sharp Generic Struct, C Sharp Generic Interface, C Sharp Generic Delegate, C Sharp Generic Method, C Sharp Type Parameter, C Sharp Type Argument, C Sharp In Type Parameter, C Sharp Out Type Parameter, C Sharp Variance, C Sharp Covariance, C Sharp Contravariance, C Sharp Attribute, C Sharp Conditional Attribute, C Sharp Obsolete Attribute, C Sharp AttributeUsage Attribute, C Sharp CallerMemberName Attribute, C Sharp CallerLineNumber Attribute, C Sharp CallerFilePath Attribute, C Sharp ParamArray Attribute, C Sharp Partial Keyword, C Sharp Internal Keyword, C Sharp Protected Keyword, C Sharp Private Keyword, C Sharp Public Keyword, C Sharp Static Keyword, C Sharp Virtual Keyword, C Sharp Override Keyword, C Sharp Abstract Keyword, C Sharp Sealed Keyword, C Sharp Readonly Keyword, C Sharp Const Keyword, C Sharp Volatile Keyword, C Sharp Unsafe Keyword, C Sharp Checked Keyword, C Sharp Unchecked Keyword, C Sharp Fixed Keyword, C Sharp Lock Keyword, C Sharp Using Keyword, C Sharp Namespace Keyword, C Sharp Class Keyword, C Sharp Struct Keyword, C Sharp Interface Keyword, C Sharp Enum Keyword, C Sharp Delegate Keyword, C Sharp Event Keyword, C Sharp This Keyword, C Sharp Base Keyword, C Sharp As Keyword, C Sharp Is Keyword, C Sharp In Keyword, C Sharp Out Keyword, C Sharp Ref Keyword, C Sharp Out Parameter, C Sharp In Parameter, C Sharp Params Parameter, C Sharp Extern Keyword, C Sharp Partial Modifier, C Sharp New Modifier, C Sharp Async Keyword, C Sharp Await Keyword, C Sharp Var Keyword, C Sharp Dynamic Keyword, C Sharp Default Literal, C Sharp Null-Coalescing Operator, C Sharp Null-Coalescing Assignment Operator, C Sharp Null-Conditional Operator, C Sharp Nameof Operator, C Sharp Pattern Matching, C Sharp Switch Expression, C Sharp Is Pattern Expression, C Sharp When Clause, C Sharp Relational Pattern, C Sharp Logical Pattern, C Sharp Not Pattern, C Sharp And Pattern, C Sharp Or Pattern, C Sharp Property Pattern, C Sharp Positional Pattern, C Sharp Discard Pattern, C Sharp Tuple Pattern, C Sharp List Pattern, C Sharp Slice Pattern, C Sharp Primary Constructor, C Sharp Record Type, C Sharp Record Class, C Sharp Record Struct, C Sharp With Expression, C Sharp Init-Only Property, C Sharp Target-Typed New, C Sharp Expression-Bodied Member, C Sharp Expression-Bodied Property, C Sharp Expression-Bodied Method, C Sharp Expression-Bodied Constructor, C Sharp Expression-Bodied Destructor, C Sharp Expression-Bodied Indexer, C Sharp Auto-Property, C Sharp Auto-Property Initializer, C Sharp Backing Field, C Sharp Accessor, C Sharp Getter, C Sharp Setter, C Sharp Init Accessor, C Sharp Add Accessor, C Sharp Remove Accessor, C Sharp Event Accessor, C Sharp Readonly Auto-Property, C Sharp Required Keyword, C Sharp File-Scoped Namespace, C Sharp Global Using Directive, C Sharp Interpolated String, C Sharp Raw String Literal, C Sharp Unicode Escape, C Sharp Verbatim String Literal, C Sharp Digit Separator, C Sharp Binary Literal, C Sharp Ref Struct, C Sharp Readonly Struct, C Sharp Span Type, C Sharp Memory Safety, C Sharp Safe Code, C Sharp Unsafe Code, C Sharp Pointer Type, C Sharp Fixed Statement, C Sharp Stackalloc Keyword, C Sharp Managed Type, C Sharp Unmanaged Type, C Sharp Boxing, C Sharp Unboxing, C Sharp Conversion Operator, C Sharp Implicit Operator, C Sharp Explicit Operator, C Sharp User-Defined Conversion, C Sharp Operator Overloading, C Sharp Arithmetic Operator, C Sharp Comparison Operator, C Sharp Logical Operator, C Sharp Conditional Operator, C Sharp Null-Conditional Operator, C Sharp Index Operator, C Sharp Range Operator, C Sharp Member Access Operator, C Sharp Lambda Expression, C Sharp Anonymous Method, C Sharp Delegate Type, C Sharp Multicast Delegate, C Sharp Func Delegate, C Sharp Action Delegate, C Sharp Predicate Delegate, C Sharp Lambda Operator, C Sharp Statement Lambda, C Sharp Expression Lambda, C Sharp Closure, C Sharp Captured Variable, C Sharp Local Function, C Sharp Local Static Function, C Sharp Local Variable, C Sharp Local Constant, C Sharp Block Scope, C Sharp Lexical Scope, C Sharp Lifetime, C Sharp Using Statement, C Sharp Await Using, C Sharp Await Foreach, C Sharp Asynchronous Streams, C Sharp IAsyncEnumerable, C Sharp IAsyncEnumerator, C Sharp IAsyncDisposable, C Sharp Task-Based Asynchronous Pattern, C Sharp Async Method, C Sharp Async Lambda, C Sharp Async Local Function, C Sharp Iterator, C Sharp Yield Keyword, C Sharp Yield Return, C Sharp Yield Break, C Sharp Foreach Statement, C Sharp For Statement, C Sharp While Statement, C Sharp Do Statement, C Sharp If Statement, C Sharp Else Statement, C Sharp Switch Statement, C Sharp Break Statement, C Sharp Continue Statement, C Sharp Return Statement, C Sharp Goto Statement, C Sharp Checked Statement, C Sharp Unchecked Statement, C Sharp Lock Statement, C Sharp Fixed Statement, C Sharp Unsafe Statement, C Sharp Try Statement, C Sharp Catch Clause, C Sharp Finally Clause, C Sharp Throw Statement, C Sharp Throw Expression, C Sharp Exception Handling, C Sharp Exception Filter, C Sharp Using Declaration, C Sharp Disposal Pattern, C Sharp IDisposable Interface, C Sharp IAsyncDisposable Interface, C Sharp Pattern Variable, C Sharp Pattern Arm, C Sharp Pattern Switch, C Sharp Pattern-Based If, C Sharp Pattern-Based While, C Sharp Pattern Guards, C Sharp Partial Aggregation (use once), C Sharp Code Generation Attribute, C Sharp Interpolated Verbatim String, C Sharp Caller Argument Expression Attribute, C Sharp Index Type, C Sharp Range Type, C Sharp Indexing, C Sharp Slicing, C Sharp Deconstruction, C Sharp Deconstruct Method, C Sharp Tuple Type, C Sharp Tuple Literal, C Sharp Tuple Deconstruction, C Sharp Named Tuple Element, C Sharp Discards, C Sharp Out Variable, C Sharp Out Declaration, C Sharp Object Initializer, C Sharp Collection Initializer, C Sharp Anonymous Type, C Sharp Anonymous Object Initializer, C Sharp Query Expression, C Sharp From Clause, C Sharp Where Clause, C Sharp Select Clause, C Sharp Group Clause, C Sharp Into Clause, C Sharp Join Clause, C Sharp Let Clause, C Sharp Orderby Clause, C Sharp Ascending Keyword, C Sharp Descending Keyword, C Sharp Query Variable, C Sharp Range Variable, C Sharp Method Syntax, C Sharp Query Syntax, C Sharp LINQ, C Sharp Deferred Execution, C Sharp Expression Tree, C Sharp Lambda Parameter, C Sharp Parameter Default Value, C Sharp Named Argument, C Sharp Optional Parameter, C Sharp Constructor Initializer, C Sharp Base Initializer, C Sharp This Initializer, C Sharp Object Creation Expression, C Sharp Anonymous Function, C Sharp Captured Environment, C Sharp Partial Type Definition, C Sharp Partial Generic Type, C Sharp Generic Constraint, C Sharp Where Clause (Generic), C Sharp Class Constraint, C Sharp Struct Constraint, C Sharp Unmanaged Constraint, C Sharp Notnull Constraint, C Sharp Nullable Context, C Sharp Nullable Reference Type, C Sharp Non-Nullable Reference Type, C Sharp Null-Forcing Operator, C Sharp Null Forgiving Operator, nullable Directive, C Sharp Null State, C Sharp Nullability Analysis, C Sharp Dataflow Analysis, C Sharp Roslyn Analyzer (Roslyn is part of C# ecosystem), C Sharp Code Fix Provider, C Sharp Source Generator, C Sharp Incremental Generator, C Sharp Language Version, C Sharp Language Specification, C Sharp Language Design, C Sharp Language Proposal, C Sharp Language Feature, C Sharp Experimental Feature, C Sharp Preview Feature, C Sharp Backward Compatibility, C Sharp Forward Compatibility, C Sharp Overload Resolution, C Sharp Type Inference, C Sharp Return Type Inference, C Sharp Local Type Inference, C Sharp Anonymous Methods, C Sharp Implicitly Typed Local Variable, C Sharp Implicitly Typed Array, C Sharp Collection Initializer, C Sharp Object Initializer Expression, C Sharp Dataflow Variable State, C Sharp Null State Analysis, C Sharp Null Tracking, C Sharp Extended Property Patterns, C Sharp Target-Typed New Expression, C Sharp Lambda Discard Parameters, C Sharp Lambda Attributes, C Sharp Attributes on Local Functions, C Sharp Attributes on Lambda Expressions, C Sharp Record Equality, C Sharp Record Positional Parameters, C Sharp Primary Constructor Parameters, C Sharp Inferred Tuple Element Name, C Sharp Inferred Anonymous Type Property Name, C Sharp Deconstruction Assignment, C Sharp Deconstruction Declaration, C Sharp Pattern Combinators, C Sharp Switch Expression Arm, C Sharp Exhaustive Pattern Matching, C Sharp Ref Return, C Sharp Ref Local, C Sharp Ref Readonly, C Sharp Writeable Ref, C Sharp Inline Array, C Sharp Raw String Literals, C Sharp UTF-8 String Literals, C Sharp File Keyword (for namespaces), C Sharp Required Members, C Sharp Required Keyword, C Sharp Statically Resolved Type Parameter (conceptual), C Sharp Lifted Operators, C Sharp Lifted Conversions, C Sharp Lifted Nullable Types, C Sharp Partial Struct Methods, C Sharp Partial Record, C Sharp Partial Record Struct, C Sharp Interpolated String Handler, C Sharp AndAlso Operator (&&), |), C Sharp Lifted Boolean Operators, C Sharp Conversion Operator Overload, C Sharp Equality Contract, C Sharp With Expression on Record, C Sharp Record Clone, C Sharp Equality Members in Record, C Sharp Deconstruct Method in Record, C Sharp Init Accessor in Record, C Sharp Primary Constructor in Record, C Sharp Value Equality in Record, C Sharp Dataflow Warnings, C Sharp SuppressNullableWarning, pragma Warning Directive, line Directive, region Directive, endregion Directive, if Directive, else Directive, elif Directive, endif Directive, define Directive, undef Directive, error Directive, warning Directive, pragma warning disable, pragma warning restore, C Sharp Interpolated String Alignment, C Sharp Interpolated String Format Specifier, C Sharp Switch Expression Guards, C Sharp Switch Expression Arms, C Sharp Expression Bodied Accessor, C Sharp Expression Bodied Indexer, C Sharp Expression Bodied Ctor, C Sharp Expression Bodied Dtor, C Sharp Async Streams, C Sharp Await Foreach (Async), C Sharp Await Using (Async), C Sharp Async Disposable Pattern, C Sharp Async Iterator, C Sharp IAsyncEnumerable Interface, C Sharp IAsyncEnumerator Interface, C Sharp Configurable Nullability, C Sharp Null State Merging, C Sharp Null State Splitting, C Sharp Null-forgiving Operator (!), C Sharp Indices and Ranges, C Sharp Index Struct, C Sharp Range Struct, C Sharp Pattern-Based Disposal, C Sharp Pattern-Based Deconstruction, C Sharp Pattern Variables in Condition, C Sharp Pattern Variables in Switch, C Sharp Pattern Variables in Is Expression, C Sharp Is Pattern Expression With Variable, C Sharp Pattern Matching Enhancements, C Sharp Recursive Patterns, C Sharp Extended Property Patterns, C Sharp Combine Patterns, C Sharp Logical Patterns, C Sharp Relational Patterns, C Sharp Pattern In Switch Arm, C Sharp Discard Pattern in Switch, C Sharp Asynchronous Disposable, C Sharp IAsyncDisposable in Using, C Sharp Local Static Function, C Sharp Lambda Attributes Application, C Sharp Lambda Return Type Inference, C Sharp Lambda Parameter Inference, C Sharp Lambda Expression Tree Conversion, C Sharp Method Group Conversion, C Sharp Tasklike Type, C Sharp Async Method Builder, C Sharp Move Next State Machine Method, C Sharp Awaiter Pattern, C Sharp GetAwaiter Method, C Sharp IsCompleted Property, C Sharp GetResult Method, C Sharp Pattern Variables in Let Clause, C Sharp pattern Variables in from Clause, C Sharp Null Conditional in Query, C Sharp Null Coalescing in Query, C Sharp Query Continuation, C Sharp Query Transparency, C Sharp Transparent Identifier, C Sharp Range Variable Shadows, C Sharp Overload Resolution on Tuples, C Sharp Overload Resolution on Lambdas, C Sharp Overload Resolution on Nullable, C Sharp Overload Resolution on Indexers, C Sharp ref struct Constraints, C Sharp Interpolated String Const, C Sharp Interning Strings, C Sharp String Interpolation Hole, C Sharp Switch Expression Patterns, C Sharp Switch Expression Exhaustiveness, C Sharp Switch Expression Default Arm, C Sharp Pattern-Based is Operator, C Sharp Pattern in If Statement, C Sharp Pattern in While Statement, C Sharp Pattern in Match Expression, C Sharp Pattern in Let Declaration, C Sharp Pattern in Deconstruction Declaration, C Sharp Unit Testing with C Sharp Assertions (Refers specifically to C# testing frameworks), C Sharp Caller Information Attributes, line Directive, pragma warning suppress, pragma warning hint, pragma warning safeonly (hypothetical), C Sharp Source Generator Pipeline, C Sharp Incremental Source Generator, C Sharp Stable Language Features, C Sharp Deprecated Language Features, C Sharp Backwards Compatibility Mode, C Sharp Expression Trees, C Sharp Expression Tree Lambda, C Sharp Expression Tree Parameter, C Sharp Expression Tree Body, C Sharp Expression Tree Visitor, C Sharp Expression Bodied get, C Sharp Expression Bodied set, C Sharp Expression Bodied add, C Sharp Expression Bodied remove, C Sharp Caller Argument Expression, C Sharp Caller Info Attributes Application, C Sharp Enhancements to Partial Methods, C Sharp Partial Method Implementation, C Sharp Partial Method Signature, C Sharp Partial Method Constraints, C Sharp Partial Record Parameter, C Sharp Partial Class Constraints, C Sharp Partial Generic Constraint.

C Sharp: Effective C Sharp, C Sharp Best Practices, C Sharp Fundamentals, C Sharp Inventor - C Sharp Language Designer: Anders Hejlsberg of Microsoft in January 2000, Now Mads Torgersen is Primary Architect; Dot Net, C# Keywords, Avalonia, C Sharp on Linux, C Sharp on macOS, C Sharp on Windows, C Sharp on Android, C Sharp on iOS, C Sharp Installation (choco install dotnet, brew install dotnet), C Sharp Containerization (C Sharp with Docker, C Sharp with Podman, C Sharp and Kubernetes, C Sharp Built-In Data Types, C Sharp Data Structures - C Sharp Algorithms, C Sharp Syntax, C Sharp OOP - C Sharp Design Patterns, Clean C Sharp | Clean C - C Sharp Style Guide | Style Guide, C Sharp Best Practices | Best Practices (C Sharp Core Guidelines (CG) | Core Guidelines (CG), ) - C Sharp BDD | BDD, C Sharp Compiler | Compiler, C Sharp IDEs | IDEs (Visual Studio, Visual Studio Code, JetBrains Ryder), C Sharp Development Tools | Development Tools, C Sharp Linter | Linter, C Sharp Debugging | Debugging, C Sharp Modules | Modules, C Sharp Packages | Packages, C Sharp Package Manager | Package Manager (NuGet), C Sharp Standard Library | Standard Library, C Sharp libraries | libraries, C Sharp frameworks | frameworks, C Sharp DevOps | DevOps - C Sharp SRE | SRE, C Sharp dot NET and Databases | .NET and Databases (LINQ and Entity Framework ORM), C Sharp Data Science | Data Science - C Sharp DataOps | DataOps, C Sharp Machine Learning | Machine Learning - ML.NET, C Sharp Deep Learning | Deep Learning, Functional C Sharp | Functional C, C Sharp Concurrency | Concurrency, C Sharp Parallel Programming | Parallel Programming, Async C Sharp | Async C, C Sharp History | History, C Sharp Bibliography | Bibliography, Manning C Sharp Series, C Sharp Courses | Courses, C Sharp Glossary | Glossary, C Sharp Versions | Versions, C Sharp Topics | Topics, C Sharp Research | Research, C Sharp GitHub | GitHub, Written in C Sharp | Written in C, C Sharp Popularity, C Sharp Awesome. (navbar_csharp - see also navbar_csharp_versions, navbar_dotnet, navbar_dotnet_versions, navbar_csharp_libraries, navbar_csharp_standard_library, navbar_fsharp)

Major Glossary Categories: Information Technology - IT - Computing Topics, AWS Glossary, Azure Glossary, C Language Glossary (21st Century C Glossary), CPP Glossary | C++ Glossary, C Sharp Glossary | Glossary, Cloud Glossary, Cloud Native Glossary, Clojure Glossary, COBOL Glossary, Cybersecurity Glossary, DevOps Glossary, Fortran Glossary, Functional Programming Glossary, Golang Glossary, GCP Glossary, IBM Glossary, IBM Mainframe Glossary, iOS Glossary, Java Glossary, JavaScript Glossary, Kotlin Glossary, Kubernetes Glossary, Linux Glossary, macOS Glossary, MongoDB Glossary, PowerShell Glossary, Python Glossary and Python Official Glossary, Ruby Glossary, Rust Glossary, Scala Glossary, Concurrency Glossary, SQL Glossary, SQL Server Glossary, Swift Glossary, TypeScript Glossary, Windows Glossary, Windows Server Glossary, GitHub Glossary, Awesome Glossaries. (navbar_glossary)


Cloud Monk is Retired ( for now). Buddha with you. © 2025 and Beginningless Time - Present Moment - Three Times: The Buddhas or Fair Use. Disclaimers

SYI LU SENG E MU CHYWE YE. NAN. WEI LA YE. WEI LA YE. SA WA HE.


glossary_of_c_sharp_dot_net_programming_language_terms.txt · Last modified: 2025/02/01 06:55 by 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki