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

PowerShell: Script to Send Emails

In the past, a simple email relay script was sufficient to spool internal messages. However,…

PowerShell: Exchange Servers Discovery

List Exchange Servers from a non-exchange computer # Obtain a list of all on premise…

Generate an XML file from MySQL

This is a silly little snippet has been being generated by the venerable ChatGPT website…