-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Description
@FlexOr2 commented on Wed Nov 07 2018
The "code samples" in the statements section are not included completely anymore.
Seems the cause are changes in the "Program.cs" file.
Dokumentdetails
⚠ Bearbeiten Sie diesen Abschnitt nicht. Er ist für die Verknüpfung von docs.microsoft.com zum GitHub-Artikel erforderlich.
- ID: 017f9566-a4df-e294-d6e8-da9252469ca9
- Version Independent ID: 6665f9d5-24bf-ac0d-62f5-d63ed53132ed
- Content: C#-Anweisungen – Überblick über C#
- Content Source: docs/csharp/tour-of-csharp/statements.md
- Product: dotnet-csharp
- GitHub Login: @BillWagner
- Microsoft Alias: wiwagn
@CeciAc commented on Wed Nov 07 2018
Hello @FlexOr2
Thank you for your feedback.
I'm checking the live page and I don't see any missing/broken code.
Can you please provide more information so we can work on this issue?
Kind regards,
Microsoft DOCS International Team
@FlexOr2 commented on Thu Nov 08 2018
Hi @CeciAc ,
the method definitions are missing in the code samples for all statements.
E.g. the yield statement code sample looks like:
{ for (int i = from; i < to; i++) { yield return i; } yield break; } static void YieldStatement(string[] args) { foreach (int i in Range(-10,10)) { Console.WriteLine(i); } }
So I don't see the definition of the "Range" method here.