MOckjer
MOckjer

Reputation: 621

VS 2017 Console Application (C#)

There are 2 options when creating a project in Visual Studio 2017. The .NET Core one and the other one is .NET Framework .

What are the differences between the two? Which one should I choose and why?

Upvotes: 0

Views: 214

Answers (1)

Nisfan
Nisfan

Reputation: 746

Developers use the .NET framework to create Windows desktop applications and server based applications. This includes ASP.NET web applications. .NET Core is used to create server applications that run on Windows, Linux and Mac. It does not currently support creating desktop applications with a user interface.

Ref: https://stackify.com/net-core-vs-net-framework/

Windows desktop application has graphical user interface which doesn't run inside the browser such as windows form applications.

Upvotes: 3

Related Questions