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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -122,7 +122,7 @@ The Visual Studio editor makes it easy to inspect the definition of a type, meth
122
122
123
123

124
124
125
-
1. To insert the rest of the word `query` by using IntelliSense's word comletion functionality, press **Tab**.
125
+
1. To insert the rest of the word `query` by using IntelliSense's word completion functionality, press **Tab**.
126
126
127
127
1. Finish off the code block to look like the following code. You can even practice using code snippets again by entering `cw` and then pressing **Tab** twice to generate the `Console.WriteLine` code.
Copy file name to clipboardExpand all lines: docs/ide/quickstart-ide-orientation.experimental.md
+14-8Lines changed: 14 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -32,17 +32,21 @@ 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
41
45

42
46
43
47
## Solution Explorer
44
48
45
-
**Solution Explorer**, which is probably on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
49
+
**Solution Explorer**, which is typically on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
46
50
47
51

48
52
@@ -70,9 +74,9 @@ Let's build the project to see some build output. From the **Build** menu, choos
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-ide-orientation.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ To continue exploring Visual Studio's features, let's create a new project.
46
46
47
47
## Solution Explorer
48
48
49
-
**Solution Explorer**, which is probably on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
49
+
**Solution Explorer**, which is typically on the right-hand side of Visual Studio, shows you a graphical representation of the hierarchy of files and folders in your project, solution, or code folder. You can browse the hierarchy and navigate to a file in **Solution Explorer**.
50
50
51
51

0 commit comments