9
dene / yakala + kullan, doğru sözdizimi
Hangisi: using (var myObject = new MyClass()) { try { // something here... } catch(Exception ex) { // Handle exception } } VEYA try { using (var myObject = new MyClass()) { // something here... } } catch(Exception ex) { // Handle exception }