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/csharp/tour-of-csharp/tutorials/index.md
+1-6Lines changed: 1 addition & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,6 @@ You can try these tutorials in different environments. The concepts you'll learn
23
23
24
24
-[In your browser, on the docs platform](hello-world.yml): This experience embeds a runnable C# code window in docs pages. You write and execute C# code in the browser.
25
25
-[In the Microsoft Learn training experience](/training/paths/csharp-first-steps/). This learning path contains several modules that teach the basics of C#.
26
-
-[In Jupyter on Binder](https://mybinder.org/v2/gh/dotnet/try-samples/main?filepath=hello-csharp%2Fhello-world.ipynb). You can experiment with C# code in a Jupyter notebook on binder.
27
26
-[On your local machine](numbers-in-csharp-local.md). After you've explored online, you can [download the .NET SDK and build programs on your machine](local-environment.md).
28
27
29
28
All the introductory tutorials following the Hello World lesson are available using
@@ -36,7 +35,7 @@ on your machine.
36
35
## [Hello world](hello-world.yml)
37
36
38
37
In the [Hello world](hello-world.yml) tutorial, you'll create the most basic
39
-
C# program. You'll explore the `string` type and how to work with text. You can also use the path on [Microsoft Learn training](/training/paths/csharp-first-steps/) or [Jupyter on Binder](https://mybinder.org/v2/gh/dotnet/try-samples/main?filepath=hello-csharp%2Fhello-world.ipynb).
38
+
C# program. You'll explore the `string` type and how to work with text. You can also use the path on [Microsoft Learn training](/training/paths/csharp-first-steps/).
40
39
41
40
## [Numbers in C#](numbers-in-csharp.yml)
42
41
@@ -66,7 +65,3 @@ a tour of the List collection type that stores sequences of data. You'll learn h
66
65
available [to run locally on your machine](arrays-and-collections.md).
67
66
68
67
This tutorial assumes that you've finished the lessons listed above.
This sample requires the [dotnet-try](https://github.com/dotnet/try/blob/main/README.md#setup) global tool. Once you install the tool, and clone the [try-samples](https://github.com/dotnet/try-samples) repo, you can learn Language Integrated Query (LINQ) through a set of 101 samples you can run interactively. You can explore different ways to query, explore, and transform data sequences.
Copy file name to clipboardExpand all lines: docs/standard/linq/index.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,8 +153,6 @@ The answer to this question is **no** if...
153
153
154
154
## Essential LINQ
155
155
156
-
For a truly comprehensive list of LINQ samples, visit [101 LINQ Samples](/samples/dotnet/try-samples/101-linq-samples/).
157
-
158
156
The following examples are a quick demonstration of some of the essential pieces of LINQ. This is in no way comprehensive, as LINQ provides more functionality than what is showcased here.
159
157
160
158
### The bread and butter - `Where`, `Select`, and `Aggregate`
@@ -387,6 +385,5 @@ Parallelizable CPU-bound jobs that can be easily expressed via LINQ (in other wo
*[Linqpad](https://www.linqpad.net/), a playground environment and Database querying engine for C#/F#/Visual Basic
392
389
*[EduLinq](https://codeblog.jonskeet.uk/2011/02/23/reimplementing-linq-to-objects-part-45-conclusion-and-list-of-posts/), an e-book for learning how LINQ-to-objects is implemented
0 commit comments