Σημείωση
Η πρόσβαση σε αυτήν τη σελίδα απαιτεί εξουσιοδότηση. Μπορείτε να δοκιμάσετε να εισέλθετε ή να αλλάξετε καταλόγους.
Η πρόσβαση σε αυτήν τη σελίδα απαιτεί εξουσιοδότηση. Μπορείτε να δοκιμάσετε να αλλάξετε καταλόγους.
Statements are program instructions. Except as described in the topics referenced in the following table, statements are executed in sequence. The following table lists the C# statement keywords. For more information about statements that are not expressed with any keyword, see Statements.
Category | C# keywords |
---|---|
Selection statements | if , switch |
Iteration statements | do , for , foreach , while |
Jump statements | break , continue , goto , return |
Exception-handling statements | throw , try-catch , try-finally , try-catch-finally |
checked and unchecked statements | checked , unchecked |
fixed statement | fixed |
lock statement | lock |
yield statement | yield |