Skip to content

Commit 4e32e14

Browse files
committed
fix warnings
1 parent 3297cd9 commit 4e32e14

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

docs/csharp/tour-of-csharp/tutorials/index.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ The [Branches and loops](branches-and-loops.md) tutorial teaches the basics of s
3737

3838
The [List collection](list-collection.md) lesson gives you a tour of the List collection type that stores sequences of data. You'll learn how to add and remove items, search for items, and sort the lists. You'll explore different kinds of lists.
3939

40-
## Tuples and types
41-
42-
The [Tuples and types](tuples-and-types.md) lesson provides an overview of how you can create types in C#. The lesson focuses on tuples and records. It introduces the concepts of classes and structures, which are used more often in larger projects. You'll learn much more about these types after you install the .NET SDK and build more and larger apps.
43-
4440
## Pattern matching
4541

4642
The [Pattern matching](pattern-matching.md) lesson provides an introduction to *pattern matching*. Pattern matching enables you to compare an expression against a pattern. The success of the match determines which program logic to follow. Patterns can compare types, properties of a type, or contents of a list. You can combine multiple patterns using `and`, `or`, and `not` logic. Patterns provide a rich vocabulary to inspect data and make decisions in your program based on that inspection.

docs/csharp/tour-of-csharp/tutorials/pattern-matching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The following code declares and uses a `record` type to represent a `Point`, and
3535

3636
:::code language="csharp" interactive="try-dotnet" source="./snippets/PatternMatching/Program.cs" id="FinalProgram":::
3737

38-
You completed the "Introduction to pattern matching C#" interactive tutorial. You can visit the [.NET site](https://dotnet.microsoft.com/learn/dotnet/hello-world-tutorial/intro) to download the .NET SDK, create a project on your machine, and keep coding.
38+
You completed the "Introduction to pattern matching C#" interactive tutorial. You can visit the [.NET site](https://dotnet.microsoft.com/learn/dotnet/hello-world-tutorial/intro) to download the .NET SDK, create a project on your machine, and keep coding.
3939

4040
You can learn more about pattern matching in C# in the following articles:
4141

0 commit comments

Comments
 (0)