Skip to content

Commit 68887cb

Browse files
patridgeRon Petrusha
authored andcommitted
Unify sequence step delimiter with guide (#1521)
* Unify sequence step delimiter with guide * Unify sequence step delimiter with guide * Fix list number duplicate
1 parent bbdf283 commit 68887cb

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

winforms/formatting-utility/cs/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ The source code includes an MSBuild project file for C# (a .csproj file) that ta
3030

3131
4. If you are using Visual Studio 2019:
3232

33-
1. In Visual Studio, select **Open a project or solution** (or **File** -> **Open** --> **Project/Solution** from the Visual Studio menu.
33+
1. In Visual Studio, select **Open a project or solution** (or **File** > **Open** > **Project/Solution** from the Visual Studio menu.
3434

35-
2. Select **Debug** --> **Start Debugging** from the Visual Studio menu to build and launch the application.
35+
2. Select **Debug** > **Start Debugging** from the Visual Studio menu to build and launch the application.
3636

37-
4. If you are working from the command line:
37+
5. If you are working from the command line:
3838

3939
1. Navigate to the directory that contains the sample.
4040

winforms/formatting-utility/vb/readme.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,17 +29,16 @@ The source code includes an MSBuild project file for Visual Basic (a .vbproj fil
2929

3030
4. If you are using Visual Studio 2019:
3131

32-
1. In Visual Studio, select **Open a project or solution** (or **File** -> **Open** --> **Project/Solution** from the Visual Studio menu.
32+
1. In Visual Studio, select **Open a project or solution** (or **File** > **Open** > **Project/Solution** from the Visual Studio menu.
3333

34-
2. Select **Debug** --> **Start Debugging** from the Visual Studio menu to build and launch the application.
34+
2. Select **Debug** > **Start Debugging** from the Visual Studio menu to build and launch the application.
3535

36-
4. If you are working from the command line:
36+
5. If you are working from the command line:
3737

3838
1. Navigate to the directory that contains the sample.
3939

4040
2. Type in the command `dotnet run` to build and launch the application.
4141

42-
4342
## Format strings in .NET
4443

4544
*Formatting* involves converting a value to its string representation. `ToString` methods that include a string parameter, [interpolated strings](https://docs.microsoft.com/dotnet/csharp/language-reference/tokens/interpolated), as well as the [composite formatting feature](https://docs.microsoft.com/dotnet/standard/base-types/composite-formatting) supported by such methods as [String.Format](https://docs.microsoft.com/dotnet/api/system.string.format), [StringBuilder.AppendFormat](https://docs.microsoft.com/dotnet/api/system.text.stringbuilder.appendformat), the [Console](https://docs.microsoft.com/dotnet/api/system.console) output methods, and the stream output methods give developers control over the string representations of numbers and dates. They allow such code as:

0 commit comments

Comments
 (0)