You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ide/quickstart-editor.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ Start by creating a new file and adding some code to it.
28
28
29
29
1. In the **New File** dialog box, under the **General** category, choose **Visual C# Class**, and then choose **Open**.
30
30
31
-
A new file opens in the editor with the skeleton of a C# class. (Notice that we don't have to create a full Visual Studio project to gain some of the benefits that the code editor offers; all we need is a code file!)
31
+
A new file opens in the editor with the skeleton of a C# class. (Notice that we don't have to create a full Visual Studio project to gain some of the benefits that the code editor offers; all you need is a code file!)
32
32
33
33

34
34
@@ -54,7 +54,7 @@ The list includes snippets for creating a [class](/dotnet/csharp/programming-gui
54
54
55
55
## Comment out code
56
56
57
-
The toolbar, which is the row of buttons under the menu bar in Visual Studio, can help make you more productive as you code. For example, you can toggle IntelliSense completion mode ([IntelliSense](using-intellisense.md) is a coding aid that displays lists of matching methods, amongst other things), increase or decrease a line indent, or comment out code that you don't want to compile. In this section, we'll comment out some code.
57
+
The toolbar, which is the row of buttons under the menu bar in Visual Studio, can help make you more productive as you code. For example, you can toggle IntelliSense completion mode ([IntelliSense](using-intellisense.md) is a coding aid that displays a list of matching methods, amongst other things), increase or decrease a line indent, or comment out code that you don't want to compile. In this section, we'll comment out some code.
@@ -98,9 +98,9 @@ The code block collapses to just the first line, followed by an ellipsis (`...`)
98
98
99
99
## View symbol definitions
100
100
101
-
TheVisualStudioeditormakesiteasytoinspectthedefinitionofatype, method, etc. Onewayistonavigatetothefilethatcontainsthedefinition, for example by choosing **Go to Definition** anywhere the symbol is referenced. An even quicker way that doesn't move your focus away from the file you're working in is to use [Peek Definition](../ide/go-to-and-peek-definition.md#peek-definition). Let's peek at the definition of `string`.
101
+
TheVisualStudioeditormakesiteasytoinspectthedefinitionofatype, method, etc. Onewayistonavigatetothefilethatcontainsthedefinition, for example by choosing **Go to Definition** anywhere the symbol is referenced. An even quicker way that doesn't move your focus away from the file you're working in is to use [Peek Definition](../ide/go-to-and-peek-definition.md#peek-definition). Let's peek at the definition of the `string` type.
Apop-upwindowappearswiththedefinitionofthe `String` class. You can scroll within the pop-up window, or even peek at the definition of another type from the peeked code.
106
106
@@ -151,12 +151,12 @@ Nobody gets code right the first time, and one of the things you might have to c
151
151
152
152
## Next steps
153
153
154
-
You've completed this Quickstart for the Visual Studio editor! Next you might try out some of the other Quickstarts for the Visual Studio IDE, look at more ways to [Navigate code](../ide/navigating-code.md), or check out the links to more information about the features we looked at. Otherwise, happy coding!
154
+
You've completed this Quickstart for the Visual Studio editor. Next, you might try out some of the other Quickstarts for the Visual Studio development environment such as [Quickstart: Projects and solutions](../ide/quickstart-projects-solutions.md) or [Quickstart: Personalize Visual Studio](../ide/quickstart-personalize-the-ide.md), look at more ways to [Navigate code](../ide/navigating-code.md), or check out the links to more information about the features we looked at. Otherwise, happy coding!
155
155
156
156
## See also
157
157
158
158
-[Quickstart: First look at the Visual Studio IDE](../ide/quickstart-ide-orientation.md)
159
-
-[Quickstart: Personalize the Visual Studio IDE and editor](../ide/quickstart-personalize-the-ide.md)
Copy file name to clipboardExpand all lines: docs/ide/quickstart-ide-orientation.md
+14-8Lines changed: 14 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,13 @@ If you close the **Start Page** and want to see it again, you can reopen it from
32
32
33
33
To continue exploring Visual Studio's features, let's create a new project.
34
34
35
-
1. On the **Start Page**, in the search box under **New project**, enter **console** to filter the list of project types to those that contain "console" in their name. Visual Studio provides various kinds of project templates that help you get started coding quickly. Choose a C# **Console App (.NET Framework)** project template. (Alternatively, if you're a Visual Basic, C++, Javascript, or other language developer, feel free to create a project in one of those languages. The UI we'll be looking at is similar for all programming languages.)
35
+
1. On the **Start Page**, in the search box under **New project**, type in **console** to filter the list of project types to those that contain "console" in their name.
36
36
37
-
1. In the **New Project** dialog box, accept the default project name and choose **OK**.
37
+

38
+
39
+
Visual Studio provides various kinds of project templates that help you get started coding quickly. Choose a C# **Console App (.NET Framework)** project template. (Alternatively, if you're a Visual Basic, C++, Javascript, or other language developer, feel free to create a project in one of those languages. The UI we'll be looking at is similar for all programming languages.)
40
+
41
+
1. In the **New Project** dialog box that appears, accept the default project name and choose **OK**.
38
42
39
43
The project is created and a file named *Program.cs* opens in the **Editor** window. The **Editor** shows the contents of files, and is where you'll do most of your coding work in Visual Studio.
40
44
@@ -66,13 +70,13 @@ The **Output** window shows you output messages from building your project and f
66
70
67
71
Let's build the project to see some build output. From the **Build** menu, choose **Build Solution**. The **Output** window automatically obtains focus and display a successful build message.
68
72
69
-

73
+

70
74
71
75
## Quick Launch
72
76
73
-
The **Quick Launch** box is a quick and easy way to do pretty much anything in Visual Studio. You can enter some text related to what you want to do, and it'll show you a list of options that pertain to the text. For example, say we want to increase the build output's verbosity to display additional details about what exactly build is doing:
77
+
The **Quick Launch** box is a quick and easy way to do pretty much anything in Visual Studio. You can enter some text related to what you want to do, and it'll show you a list of options that pertain to the text. For example, imagine you want to increase the build output's verbosity to display additional details about what exactly build is doing. Here's how you might do that:
74
78
75
-
1.Enter**verbosity** into the **Quick Launch** box. From the displayed results, choose **Projects and Solutions --> Build and Run** under the **Options** category.
79
+
1.Type**verbosity** into the **Quick Launch** box. From the displayed results, choose **Projects and Solutions --> Build and Run** under the **Options** category.
76
80
77
81

78
82
@@ -84,6 +88,8 @@ The **Quick Launch** box is a quick and easy way to do pretty much anything in V
84
88
85
89
This time the **Output** window shows more verbose logging from the build process, including which files were copied where.
86
90
91
+

92
+
87
93
## Send Feedback menu
88
94
89
95
Should you encounter any problems while you're using Visual Studio, or if you have suggestions for how to improve the product, you can use the **Send Feedback** menu at the top of the Visual Studio window, next to the **Quick Launch** box.
@@ -92,11 +98,11 @@ Should you encounter any problems while you're using Visual Studio, or if you ha
92
98
93
99
## Next steps
94
100
95
-
We've looked at just a few of the features of the Visual Studio IDE to get acquainted with the user interface. To explore further:
101
+
We've looked at just a few of the features of Visual Studio to get acquainted with the user interface. To explore further:
96
102
97
-
- Take a more in-depth tour of the IDE, and even dabble in debugging, in [Overview of the Visual Studio IDE](../ide/visual-studio-ide.md)
103
+
- Take a more in-depth tour of Visual Studio, and even dabble in debugging, in [Overview of the Visual Studio IDE](../ide/visual-studio-ide.md)
98
104
99
-
- Browse the **General User Interface Elements** section of the VS documentation, which goes into more depth about windows such as the [Error List](../ide/reference/error-list-window.md), [Output window](../ide/reference/output-window.md), [Properties window](../ide/reference/properties-window.md), and [Options dialog box](../ide/reference/options-dialog-box-visual-studio.md)
105
+
- Browse the **General user interface elements** section of the VS documentation, which goes into more depth about windows such as the [Error List](../ide/reference/error-list-window.md), [Output window](../ide/reference/output-window.md), [Properties window](../ide/reference/properties-window.md), and [Options dialog box](../ide/reference/options-dialog-box-visual-studio.md)
Copy file name to clipboardExpand all lines: docs/ide/quickstart-projects-solutions.md
+2-4Lines changed: 2 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -21,17 +21,15 @@ We'll construct a solution and project from scratch as an educational exercise t
21
21
> [!NOTE]
22
22
> Solutions and projects aren't required to develop apps in Visual Studio. You can also just open a folder that contains code and start coding, building, and debugging. For example, if you clone a [GitHub](https://github.com/) repo, it might not contain Visual Studio projects and solutions. For more information, see [Develop code in Visual Studio without projects or solutions](../ide/develop-code-in-visual-studio-without-projects-or-solutions.md).
23
23
24
-
## Solutions
24
+
## Solutions and projects
25
25
26
26
Solutions are containers used by Visual Studio to organize one or more related projects. When you open a solution in Visual Studio, it automatically loads all the projects it contains.
27
27
28
28
### Create a solution
29
29
30
30
We'll start our exploration by creating an empty solution. After you get to know Visual Studio, you probably won't find yourself creating empty solutions very often. When you create a new project, Visual Studio automatically creates a solution to house the project if there's not a solution already open.
31
31
32
-
1. Start Visual Studio.
33
-
34
-
Visual Studio opens, and you'll likely see the **Start Page** taking up most of the window.
32
+
1. Open Visual Studio.
35
33
36
34
1. On the menu bar, which is the row of menus such as **File** and **Edit**, choose **File** > **New** > **Project**.
0 commit comments