Content deleted Content added
m →Loops: typo like example above |
→Exception handling: BSD/A is much more readable esp. when you have several statements |
||
Line 87:
In [[C Sharp programming language|C#]] and Java:
try
'''{''' ''statement(s)''
'''}'''
catch (exception type) '''{''' ''statement(s)''
'''}'''
catch (exception type) '''{''' ''statement(s)''
'''}'''
finally '''{''' ''statement(s)''
'''}'''
|