Posted On April 4, 2019

Notable Features of C#

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Notable Features of C#

This language is part of the .NET framework that can be used to build applications on Windows and browsers. Recently, Microsoft has integrated open source Linux implementation named “Mono” into Visual Studio; thus, it is possible to write C# code that can be compiled for Linux systems.

Automatic Garbage Collection: although automatic memory management isn’t unique for high level programming languages, it’s an time saver as compared to lower level programming languages such as C++, and certainly not C.

Language-Integrated Query (LINQ) is added to .NET 3.5. This introduces a new type that represent strongly typed lambda expressions. This bridges the gap between the world of objects and the world of data. This applies to simplified operations on SQL databases, XML docs, ADO.NET datasets, and .NET collections.

Delegates reference type variable that are similar to C++ pointers to functions.

Standard Library
Assembly Versioning
Properties and Events
Easy-to-use Generics
Indexers
Conditional Compilation
Integration with Windows

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How To Link Containers Using Docker Compose

This yields several advantages:1. Direct linking between containers is architectually efficient to direct traffic between…

PowerShell: Rename Photo and Video Files by Adding Creation Dates

Have you ever downloaded a punch of images, MOV, and MP4 from iCloud to find…

Bash Shell: Old School Migration of ESXi Guest Virtual Machines

Step 0: Preparations Estimate file-copying duration for cut-over:- Sustained storage transfer speed using a 1GB…