Skip to content

Fixed headings ending with # #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ translation.priority.mt:
- "pt-br"
- "tr-tr"
---
# Using the Visual Studio Development Environment for C#
# Using the Visual Studio Development Environment for C# #
The Visual Studio integrated development environment (IDE) is a collection of development tools exposed through a common user interface. Some of the tools are shared with other [!INCLUDE[vsprvs](../code-quality/includes/vsprvs_md.md)] languages, and some, such as the C# compiler, are unique to Visual C#. This topic provides links to the most important Visual C# tools.

## Related Topics
Expand All @@ -62,4 +62,4 @@ The Visual Studio integrated development environment (IDE) is a collection of de
## See Also
[C#](/dotnet/csharp/csharp)
[Getting Started with C#](/dotnet/csharp/getting-started/getting-started-with-csharp)
[C# Reference](/dotnet/csharp/language-reference/index)
[C# Reference](/dotnet/csharp/language-reference/index)
4 changes: 2 additions & 2 deletions docs/debugger/debugging-f-hash.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ translation.priority.ht:
- "zh-cn"
- "zh-tw"
---
# Debugging F#
# Debugging F# #
Debugging F# is similar to debugging any managed language, with a few exceptions:

- The **Autos** window does not display F# variables.
Expand All @@ -46,4 +46,4 @@ Debugging F# is similar to debugging any managed language, with a few exceptions
- The debugger does not recognize F# expressions. To enter an expression in a debugger window or a dialog box during F# debugging, you must translate the expression into C# syntax. When you translate an F# expression into C#, make sure to remember that C# uses == as the comparison operator for equality and that F# uses a single =.

## See Also
[Debugging Managed Code](../debugger/debugging-managed-code.md)
[Debugging Managed Code](../debugger/debugging-managed-code.md)
4 changes: 2 additions & 2 deletions docs/debugger/edit-and-continue-not-supported-for-f-hash.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ translation.priority.ht:
- "zh-cn"
- "zh-tw"
---
# Edit and Continue Not Supported for F#
Edit and Continue is not supported when you debug F# code. Edits to F# code are possible during a debugging session but should be avoided. Code changes are not applied during the debugging session. Therefore, any edits made to F# code while you debug will result in source code that does not match the code being debugged.
# Edit and Continue Not Supported for F# #
Edit and Continue is not supported when you debug F# code. Edits to F# code are possible during a debugging session but should be avoided. Code changes are not applied during the debugging session. Therefore, any edits made to F# code while you debug will result in source code that does not match the code being debugged.
4 changes: 2 additions & 2 deletions docs/debugger/format-specifiers-in-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ translation.priority.mt:
- "pt-br"
- "tr-tr"
---
# Format Specifiers in C#
# Format Specifiers in C# #
You can change the format in which a value is displayed in the **Watch** window using format specifiers. You can also use format specifiers in the **Immediate** window, the **Command** window, and even in source windows. If you pause on an expression in those windows, the result will appear in a DataTip. DataTips will reflect the format specifier in the DataTip display.

To use a format specifier, type the expression followed by a comma. After the comma, add the appropriate specifier.
Expand Down Expand Up @@ -83,4 +83,4 @@ You can change the format in which a value is displayed in the **Watch** window

## See Also
[Watch and QuickWatch Windows](../debugger/watch-and-quickwatch-windows.md)
[Autos and Locals Windows](../debugger/autos-and-locals-windows.md)
[Autos and Locals Windows](../debugger/autos-and-locals-windows.md)
4 changes: 2 additions & 2 deletions docs/debugger/walkthrough-writing-a-visualizer-in-csharp.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ translation.priority.ht:
- "zh-cn"
- "zh-tw"
---
# Walkthrough: Writing a Visualizer in C#
# Walkthrough: Writing a Visualizer in C# #
This walkthrough shows how to write a simple visualizer by using C#. The visualizer you will create in this walkthrough displays the contents of a string using a Windows forms message box. This simple string visualizer is not especially useful in itself, but it shows the basic steps that you must follow to create more useful visualizers for other data types.

> [!NOTE]
Expand Down Expand Up @@ -270,4 +270,4 @@ This walkthrough shows how to write a simple visualizer by using C#. The visuali
## See Also
[Visualizer Architecture](../debugger/visualizer-architecture.md)
[How to: Install a Visualizer](../debugger/how-to-install-a-visualizer.md)
[Create Custom Visualizers](../debugger/create-custom-visualizers-of-data.md)
[Create Custom Visualizers](../debugger/create-custom-visualizers-of-data.md)
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Windows Forms applications can be configured for multiple cultures through the u

6. Close the **Application Files** dialog box.

### To download satellite assemblies on demand in C#
### To download satellite assemblies on demand in C# #

1. Open the Program.cs file. If you do not see this file in Solution Explorer, select your project, and on the **Project** menu, click **Show All Files**.

Expand All @@ -93,4 +93,4 @@ Windows Forms applications can be configured for multiple cultures through the u

## See Also
[Walkthrough: Downloading Satellite Assemblies on Demand with the ClickOnce Deployment API](../deployment/walkthrough-downloading-satellite-assemblies-on-demand-with-the-clickonce-deployment-api.md)
[Localizing ClickOnce Applications](../deployment/localizing-clickonce-applications.md)
[Localizing ClickOnce Applications](../deployment/localizing-clickonce-applications.md)
4 changes: 2 additions & 2 deletions docs/ide/how-to-suppress-compiler-warnings.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ translation.priority.mt:
# How to: Suppress Compiler Warnings
You can declutter a build log by specifying one or more kinds of compiler warnings that you don’t want it to contain. For example, you might use this technique to review some but not all of the information that’s generated automatically when you set the build-log verbosity to Normal, Detailed, or Diagnostic. For more information about verbosity, see [How to: View, Save, and Configure Build Log Files](../ide/how-to-view-save-and-configure-build-log-files.md).

### To suppress specific warnings for Visual C# or F#
### To suppress specific warnings for Visual C# or F# #

1. In **Solution Explorer**, choose the project in which you want to suppress warnings.

Expand Down Expand Up @@ -120,4 +120,4 @@ You can declutter a build log by specifying one or more kinds of compiler warnin
## See Also
[Walkthrough: Building an Application](../ide/walkthrough-building-an-application.md)
[How to: View, Save, and Configure Build Log Files](../ide/how-to-view-save-and-configure-build-log-files.md)
[Compiling and Building](../ide/compiling-and-building-in-visual-studio.md)
[Compiling and Building](../ide/compiling-and-building-in-visual-studio.md)
4 changes: 2 additions & 2 deletions docs/ide/managing-application-settings-dotnet.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Application settings enable you to store application information dynamically. Se

We strongly recommend that you use the `My.Settings` object and the default .settings file to access settings. This is because you can use the Settings Designer to assign properties to settings, and, additionally, user settings are automatically saved before application shutdown. However, your [!INCLUDE[vbprvb](../code-quality/includes/vbprvb_md.md)] application can access settings directly. In that case you have to access the `MySettings` class and use a custom .settings file in the root of the project. You must also save the user settings before ending the application, as you would do for a C# application; this is described in the following section.

## Accessing or Changing Application Settings at Run Time in Visual C#
## Accessing or Changing Application Settings at Run Time in Visual C# #
In languages other than [!INCLUDE[vbprvb](../code-quality/includes/vbprvb_md.md)], such as [!INCLUDE[csprcs](../data-tools/includes/csprcs_md.md)], you must access the `Settings` class directly, as shown in the following [!INCLUDE[csprcs](../data-tools/includes/csprcs_md.md)] example.

```c#
Expand All @@ -105,4 +105,4 @@ Properties.Settings.Default.Save();
For general information about accessing application settings through the `Settings` class, see [Application Settings Overview](http://msdn.microsoft.com/Library/0dd8bca5-a6bf-4ac4-8eec-5725d08b38dc). For information about iterating through the settings, see this [forum post](http://social.msdn.microsoft.com/Forums/vstudio/40fbb470-f1e8-4a02-a4a0-9f62b54d0fc4/is-this-possible-propertiessettingsdefault?forum=csharpgeneral).

## See Also
[Accessing Application Settings](/dotnet/visual-basic/developing-apps/programming/app-settings/accessing-application-settings)
[Accessing Application Settings](/dotnet/visual-basic/developing-apps/programming/app-settings/accessing-application-settings)
4 changes: 2 additions & 2 deletions docs/ide/walkthrough-building-an-application.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ By completing this walkthrough, you’ll become more familiar with several opti

![Build Solution command on the Build menu](../ide/media/exploreide-buildsolution.png "ExploreIDE-BuildSolution")

#### To specify a release build for Visual C#
#### To specify a release build for Visual C# #

1. Open the **Project Designer**.

Expand Down Expand Up @@ -268,4 +268,4 @@ By completing this walkthrough, you’ll become more familiar with several opti
## See Also
[Walkthrough: Building a Project (C++)](http://msdn.microsoft.com/Library/d459bc03-88ef-48d0-9f9a-82d17f0b6a4d)
[ASP.NET Web Application Project Precompilation Overview](http://msdn.microsoft.com/en-us/b940abbd-178d-4570-b441-52914fa7b887)
[Walkthrough: Using MSBuild](../msbuild/walkthrough-using-msbuild.md)
[Walkthrough: Using MSBuild](../msbuild/walkthrough-using-msbuild.md)
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ This topic shows how to use the Concurrency Visualizer SDK to create spans and w

![Concurrency Visualizer with 3 custom marker series](../profiling/media/cvmarkerseriesnative.png "CvMarkerSeriesNative")

### To Use Visual Basic or C#
### To Use Visual Basic or C# #

1. Add Concurrency Visualizer SDK support to your application. For more information, see [Concurrency Visualizer SDK](../profiling/concurrency-visualizer-sdk.md).

Expand Down Expand Up @@ -191,4 +191,4 @@ This topic shows how to use the Concurrency Visualizer SDK to create spans and w
![Concurrency Visualizer with 3 custom marker series](../profiling/media/cvmarkerseriesmanaged.png "CvMarkerSeriesManaged")

## See Also
[Concurrency Visualizer SDK](../profiling/concurrency-visualizer-sdk.md)
[Concurrency Visualizer SDK](../profiling/concurrency-visualizer-sdk.md)