h1.post-title { color:orange; font-family:verdana,Arial; font-weight:bold; padding-bottom:5px; text-shadow:#64665b 0px 1px 1px; font-size:32px; } -->

Pages

do -- C# Keyword

do -- C# Keyword

  •   The do statement executes a statement or a block of statements repeatedly until a specified expression evaluates to false.
  •       The body of the loop must be enclosed in braces, {}, unless it consists of a single statement.
  •       In that case, the braces are optional.
        do
        {
              ///Write your Code        

        } while ();