Introduction of Dot net 4.0 to 4.5
.NET Framework 4
NET Framework 4 on 29 September 2008. The Public Beta was released on 20 May 2009.
Parallel Extensions to improve support for parallel computing, which
target multi-core or distributed systems. To this end,
technologies like PLINQ (Parallel LINQ), a parallel
implementation of the LINQ engine, and Task Parallel Library, which
exposes parallel constructs via method calls., are included.
New Visual Basic .NET and C# language features, such as implicit line
continuations, dynamic dispatch,...
Monday, 15 September 2014
Tuesday, 4 March 2014
Static Constructor in C#
A static constructor is used to initialize any static
data, or to perform a particular action that needs to be performed once
only. It is called automatically before the first instance is created
or any static members are referenced.
Static constructors have the following properties:
A static constructor does not take access modifiers or have parameters or it will not support to access modifiers.
A static constructor is called automatically to initialize the class before the first instance is created or any...
Subscribe to:
Posts (Atom)