[.NET] [C#] Schlüsselwörter - break; und continue;

Dieses Thema im Forum "Programmier Tutorials" wurde erstellt von juppwatis, 3. September 2007 .

Schlagworte:
Status des Themas:
Es sind keine weiteren Antworten möglich.
  1. 3. September 2007
    [C#] Schlüsselwörter - break; und continue;

    um euch nicht im lerndrang aufzuhalten schiebe ich hier gleich das nächste tutorial nach. es behandelt die zwei schlüsselwörter break; und continue;. mit diesen zwei schlüsselwörtern kann man vorzeitig schleifen beenden bzw abbrechen.
    schaut es euch einfach an dann wisst ihr mehr und bewertung bitte nicht vergessen wenn irgendwie möglich...

    C# Break Example

    PHP:
    using System ;
     
    class 
    Program
    {
        static 
    void Main ( string []  args )
        {
            for(
    int count  1 count  <=  10 count ++)
            {
                if (
    count  >=  6 )
                    break;  
    //if condition is met
                            //exit the loop
     
                
    Console . WriteLine ( count );
            }
            
    Console . Read ();
        }
    }
    Output:
    C# Continue Statement
    PHP:
    using System ;
     
    class 
    Program
    {
        static 
    void Main ( string []  args )
        {
            for(
    int count  1 count  <=  10 count ++)
            {
                if (
    count  ==  5 )
                    continue;   
    //condition is met
                                //skip the code below
     
                
    Console . WriteLine ( count );
            }
            
    Console . Read ();
        }
    }
    Output:
     
  2. Video Script

    Videos zum Themenbereich

    * gefundene Videos auf YouTube, anhand der Überschrift.