Table of ContentsC# Fixed ArrayFixed Size Buffer In C#C# Fixed Size Buffer SampleBenefits Of Fixed Size Buffer In C#C# Fixed Buffer Attribute sampleFAQ on C# Fixed ArraysHow to Declare Fixed-size array of struct type in C#?Summary C# Fixed Array This article covers declaring a C++ style fixed-size structure was difficult in earlier versions of C#. […]
OWIN in ASP.NET Core| What is OWIN in .NET?
There is a significant amount of growth in open-source web stacks at the moment. Microsoft is also working to update its web application stack, and has released a number of new framework components. Even though Microsoft’s Asp.Net is mature, it lacks few key characteristics like portability, modularity, and scalability. The creation of OWIN, a specification […]
C# Version History | C# Evolution and Features
C# was developed in the year 2002 with the .NET Framework 1.0 and has since continued to develop with enhanced features and performance. C# is a general-purpose, contemporary, and object-oriented programming language. It was created by Microsoft as part of the.NET program and was authorized by the ECMA (European Computer Manufacturers Association) and the ISO […]
What is ASP.NET Core Module
ASP.NET Core Module is one native IIS module. ASP.NET Core Module allows ASP.NET Core apps to function with IIS by plugging into the IIS pipeline. You can use IIS to run ASP.NET Core apps in one of two ways: The in-process hosting technique involves hosting an ASP.NET Core app within the IIS worker process (w3wp.exe). […]
C# 3d array
In C# arrays can have multiple dimensions, arrays with more than one dimension. C# can support nearly 32 dimensions for multidimensional arrays. To declare a multidimensional array, use commas between the square brackets to delimit the array’s dimensions. Arrays can be classified according to their dimensions. The dimension of an array can be identified by counting […]
Collection Initializers in C# 3.0
C# Collection Initializers enable you to add items in the collection at the time of instantiation of the collection. Collection can be a List or Dictionary or any other available C# collection. Till C# 2.0, for creating a collection of Employees we normally do Assuming that there is an overloaded constructor for the Employee class.Here […]