How to use visual studio 2015 or 2017 free? [duplicate] - c#

This question already has answers here:
What's the difference between Visual Studio Community and other, paid versions?
(4 answers)
Closed 5 years ago.
I just want to create a simple console application in Visual studio 2015 or 2017. But visual studio is not freely available. I tried to download VS2017 trial version but I am only getting one installed template and that is to create blank solution. Please suggest what I need to do or what I am doing wrong.

Since you're not in an enterprise, you can download and use VS Community for Free
(Formerly Visual Studio express)
https://www.visualstudio.com/vs/community/

Related

How to enable intellisense in Visual Studio 2017 for Unity [duplicate]

This question already has answers here:
Unity Scripts edited in Visual studio don't provide autocomplete
(35 answers)
Closed 5 years ago.
I've just gotten started with programming in Unity. I installed Visual Studio Code 2017 recently on Zorin 12. It's a nice interface, but there's no auto-completion! I realize that Ctrl+Space pops up some suggestions, but there are two problems that I'd like resolved with this:
The suggestions don't pop up automatically
The suggestions are based on redundancies in code I've already typed, not suggestions based on unexplored capabilities of Unity. If I'm working with a Transform object, for example, I want it to pop up all of the possible variables I could use, not just the one I used earlier.
Two errors I get can be seen at https://i.imgur.com/AwHl4ef.png
Thank you for your consideration.
For Windows or macOS:
Download/Install the Visual Studio IDE (with Unity Tools)
When installing, make sure you include installation of
Game development with Unity
Then using Unity (you can double click one of your C# files), open a new C# project and the Visual Studio IDE should open with your new project structure.
From there, you should be able to see what you are looking for.
For example:
For Linux (suggestion):
Try Monodevelop - Additional Information, it provides code completion/hints.

Visual Studio 2015 does not recognize C# 7.0 Syntax [duplicate]

This question already has answers here:
How to use C# 7 with Visual Studio 2015?
(2 answers)
Closed 5 years ago.
I have installed .NET Framework 4.7 as well as the "Targeting Pack" available from Here. I then went and updated my the target framework to 4.7 on all my projects. Despite this, Visual Studio 2015 refuses to compile C# 7.0 syntax. Is there another step I am missing? OS is Windows 7 SP1.
To be able to use the new C# 7 language features, you need a C# compiler that understands these features.
VS.NET 2017 has a compiler that supports these features. The C# compiler incorporated in VS.NET 2015 does not.

Install Nuget package manager in vs 2010 [duplicate]

This question already has an answer here:
Restrictions on installing extensions or add-ins in Visual Studio 2010 Express
(1 answer)
Closed 8 years ago.
I want to get Facebook Login for windows phone 7. I want Nuget package manager for that in Visual studio 2010 express. After installing it I am getting following error This extension is not installable on currently installed products.
You can't install any addins or extensions in VS Express 2010.
See here to see why :(

What is the difference between c# and visual c#? [duplicate]

This question already has answers here:
C# and Visual C#?
(7 answers)
Closed 8 years ago.
I am an intermediate Java programmer and want to shift to C#. I am totally new to this Microsoft language. In books, they are using both terms Visual C# and C#. Can anyone please tell the real difference between the terms?
Visual C# is an implementation of the C# language by Microsoft.
Visual C# is just C#. You can build any kind of .NET application using C# and Visual Studio makes it easier test and debug your application.
for example using Visual Studio brings you lots of capabilities :
Code Editor
Debugger
Designer
Windows Forms Designer
WPF Designer
,...
for more information about Visual Studio read this page:
http://en.wikipedia.org/wiki/Microsoft_Visual_Studio
Update: Visual C# is the marketing name that Microsoft uses for C#, So nobody calls it Visual C#.
C# would refer to the language itself, which can be compiled without the Visual Studio environment using the .NET SDK & the supplied csc.exe (c# compiler - like javac) or the Mono environment.
Visual C# likely refers to the C# language AND the Visual Studio IDE / Toolchain (SQL/Reports etc.).
There is no real difference between C# and Visual C#. The terms are often used interchangeably.
Visual C# kind of implies using the Visual Studio for C# development. But there is only C#.
See here for learning resources.

Alternate .NET development tools other than Visual Studio [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
alternative to visual studio 2010
I was wondering if there are any other tools that can be used to develop C#.NET application (like winodws forms and webforms) just like Visual Studio.
Are there any applications that are similar to Visual Studio for .NET application development?
On Windows you could use SharpDevelop. It works for C#, VB.NET, F#, and Boo. It also has a WinForms and WPF designer surface.
Check out MonoDevelop.

Categories