Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between *which version of the framework is running* and *which version of the runtime is running*?

Tags:

c#

.net

In this post, @kbrimington mentions that there is a subtle difference between which version of the framework is running and which version of the runtime is running.

What is the difference exactly?

like image 397
Andrey Rubshtein Avatar asked Dec 12 '22 06:12

Andrey Rubshtein


1 Answers

Here is a quick breakdown that might give you the information you want. It can be confusing, but it is worth your time to understand the difference between all three and how they differ and interrelate.

CLR    .NET    C#  
----   ----    ----  
1.0    1.0     1.0  
1.0    1.1     1.0  
2.0    2.0     2.0  
2.0    3.0     3.0  
2.0    3.5     3.0  
4.0    4.0     4.0  
4.0    4.5     5.0
like image 141
Josh Avatar answered Dec 14 '22 22:12

Josh