Can you run the binary version of .Net in version 2 of CLR version 2?

We are considering writing the next version of the project using .Net 3, but we are wondering if we can take a hit on forcing end users to install .net framework version 3.

0
source share
3 answers

If you want to make sure that you are using only .NET 2.0 compatible functionality, you only need to use .NET 2.0 assemblies. Then you know your safe and healthy sound.

+2
source

This article by Jean-Baptiste Evain explains how you can use C # 3.0 and LINQ and targeting machines that only have .NET 2.0 installed runtimes.

System.Core Mono, MIT/X11.

+1

.NET 3.0 is a bad name for some of the new libraries: WPF, WCF, Workflow, and InfoCard. The CLR is still version 2.0, ASP.NET is still version 2.0, and Windows Forms is still version 2.0.

In development, .NET 3.0 was called WinFX.

+1
source

Source: https://habr.com/ru/post/1697295/


All Articles