0

I am getting started on C# and installed Microsoft blend for visual studio and my newproject window looks like below.New project window

I am looking for console application as shown in below screeshot,how do I get it? Console application

EDIT1:

how do I launch visual studio IDE?

Visualstudio

5 Answers 5

8

Use Visual Studio, not Blend, to create a new Console Application.

More info on Blend and it's uses.

Sign up to request clarification or add additional context in comments.

Comments

3

Blend is an interface design tool and therefore can't be used to build console apps... Try Visual Studio Community instead.

Comments

1

Just going along with what everyone else is saying, Visual Studio 2015 COMMUNITY EDITION is free to download and fully featured. Great tool, if anything it has too many uses. I believe it may even have most of the Visual Basic features built in.

https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx

2 Comments

I installed using the link you shared,however I dont see an optition to launch IDE,I attached a screenshot of it,can you please help on how to launch the IDE?
Did you download the software or just the dev tools? Did you install the IDE yet? It's a pretty big install. It should be outside of the VS tools folder if it is installed. I know from my own experience that if there were any previous VS versions on the machine when you try to install a new version, very strange things can happen...
1

From the Microsoft Blend Website:

Microsoft Expression Blend is a full-featured professional design tool for creating engaging and sophisticated user interfaces for Microsoft Windows

Which a console application is not; is has basically no UI. You should keep on using Visual Studio for console application.

Comments

0

You can likely make the console window appear in almost any application simply by using Console.WriteLine you can also create an arbitrary console by launching one:

Is there a way to create a second console to output to in .NET when writing a console application?

Legacy Services were default are not User Interactive and thus have no console easily viewable..

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.