Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which C# version .NET Core uses?

Tags:

I know that C# version depends on .NET Framework.

But .NET Core which version uses?

Particularly .NET Core 2? C#7?

like image 837
Alexan Avatar asked Aug 27 '17 03:08

Alexan


People also ask

What does %c mean in C?

%d is used to print decimal(integer) number ,while %c is used to print character . If you try to print a character with %d format the computer will print the ASCII code of the character.

What is %d in C programming?

In C programming language, %d and %i are format specifiers as where %d specifies the type of variable as decimal and %i specifies the type as integer. In usage terms, there is no difference in printf() function output while printing a number using %d or %i but using scanf the difference occurs.


1 Answers

.NET Core 2.0 references Roslyn 2.3, which corresponds to Visual Studio 2017 version 15.3 and supports C# 7.1.

like image 86
Julien Couvreur Avatar answered Sep 20 '22 22:09

Julien Couvreur