13.07.2015 Views

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

<strong>C#</strong> LANGUAGE SPECIFICATIONwhile-statement:while ( boolean-expression ) embedded-statementdo-statement:do embedded-statement while ( boolean-expression ) ;for-statement:for ( for-initializer opt ; for-condition opt ; for-iterator opt ) embedded-statementfor-initializer:local-variable-declarationstatement-expression-listfor-condition:boolean-expressionfor-iterator:statement-expression-liststatement-expression-list:statement-expressionstatement-expression-list , statement-expressionforeach-statement:foreach ( type identifier in expression ) embedded-statementjump-statement:break-statementcontinue-statementgoto-statementreturn-statementthrow-statementbreak-statement:break ;continue-statement:continue ;goto-statement:goto identifier ;goto case constant-expression ;goto default ;return-statement:return expression opt ;throw-statement:throw expression opt ;try-statement:try block catch-clausestry block finally-clausetry block catch-clauses finally-clausecatch-clauses:specific-catch-clauses general-catch-clause optspecific-catch-clauses opt general-catch-clausespecific-catch-clauses:specific-catch-clausespecific-catch-clauses specific-catch-clause348

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!