Simple Visual Studio that supports C # and F #

What is the simplest version of Visual Studio (professional, corporate, or other) I could buy that supports C # or F # development?

It seems that F # is downloaded from Microsoft for free and comes in configurations that would allow .Net and non-NO development with or without Visual Studio. Did I miss something?

Is the same true for C #? That is, it is downloadable at no cost?

Thanks.

+6
source share
3 answers

C # loads at no cost as part of the Windows SDK (which provides the csc command line csc ) or Visual C # Express, which provides the IDE.

F # is available either in command line form ( fsc ), or as a Visual Studio plugin, which requires the VS shell VS (which is free to download) or the full (non-express) Visual Studio.

This means that you must purchase at least VS Professional to open both types of projects in one editor, but you can also use a combination of VS Express and VS Shell for free.

+9
source

The simplest single version of Visual Studio that supports both development in F # and C # is professional.

It is possible to install several free versions of the Visual Studio shell so that you can create local C # and F #

This will not give you a unified development environment, although for development in both languages.

+10
source

Visual Studio Express Edition allows you to develop NET languages. For example, Microsoft Visual C # 2010 Express and at no cost.

However, it lacks many features. If you need a more powerful IDE, you can use SharpDevelop. It is cost-effective and allows you to develop C #, F # and many others. Give it a try. Good luck

+5
source

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


All Articles