In this article you can find examples how to convert JSON into C# object using Json.NET (Newtonsoft.Json) library. It is available as a NuGet package for free, so you can easily install it from nuget.org repository. Continue reading C# – JSON to Object Examples
C# – LINQ Take Example
Take is LINQ functionality to get given number of elements from the beginning of a collection. Below you can find out how to use it. Continue reading C# – LINQ Take Example
C# – LINQ Skip Example
Skip is LINQ functionality to filter collection by omitting given number of first elements. Below is an example how to use it. Continue reading C# – LINQ Skip Example
C# – LINQ FirstOrDefault Examples
FirstOrDefault is a LINQ functionality to return first element of the collection or default value if requested item does not exist. In case of collection of reference type objects the default is null, whilst in case of value types the default depends on the particular type (e.g. for int it is 0).
FirstOrDefault is overloaded method which can be used with either zero or one parameter. The first option just returns first element and the second one allows to define condition which needs to be met. Continue reading C# – LINQ FirstOrDefault Examples
C# – LINQ Select Examples
Select is a LINQ functionality to define a data format of the query results.
Each of below examples is presented in C# with both Lambda and Query expression. Continue reading C# – LINQ Select Examples
C# – LINQ Where Examples
Where is a LINQ functionality to filter data in a query with given criteria.
Each of below examples is presented in C# with both Lambda and Query expression. Continue reading C# – LINQ Where Examples
C# – Custom method of sorting strings
In this article you can find how to create custom method of sorting strings in C#.
For the beginning let’s create an example list of strings, which are compass directions in random order.
1 2 3 4 5 6 7 8 9 10 11 |
var directions = new List<string>() { "South East", "North West", "East", "South West", "North", "West", "North East", "South" }; |
.NET Framework upgrade
How to upgrade .NET Framework?
First of all you need to install desired framework version on both development and client machines. Development machine is an environment where you code and build your project. It requires .NET Framework Developer Pack. Client machine is an environment where your application is used. It requires lighter package .NET Framework Runtime. Both types can be downloaded from Microsoft website.
When system is ready the next step is to change your project to target another framework version. Below you can see two methods how to do it. Continue reading .NET Framework upgrade