.NET
•  Greatis •  Security •  AppDatabase •  Utilities •  Delphi/CB • Visual Basic •  just4fun
.NET Software
.NET Components for Visual Studio .NET, Delphi 8, Delphi 2005 and Delphi 2006
 .NET     Entire site
More Info
Delphi to C#
Index

.NET
Form Designer .NET

See also
Delphi VCL software
Visual Basic 6 software
Hot Offer

Form Desigber .Net


  Delphi  

       Continue procedure immediately breaks any loop execution and continues the loop from the next iteration:
for i:=1 to 100 do
begin
  if i=SomeIgnoredValue then Continue;
  // some code here
end;
 
 
  C#

The continue statement passes control to the next iteration of the enclosing iteration statement in which it appears:
for (int i = 1; i <= 100; i++) 
{
  if (i == SomeIgnoredValue) continue;
  // some code here
}

Lost features     
Added features
Warnings
Additional information

 
 


Greatis Software Greatis | Security | AppDatabase | Utilities | Delphi/CB | Visual Basic | .NET | just4fun

Contacts | Add to Favorites | Recommend to a Friend | Privacy Policy | Copyright © 1998-2009 Greatis Software

eXTReMe Tracker