Log in to see your wikis
Log in to see your favorites
No pages shared with you yet
Text
Text
Questions
Feed
Analytics

Mit using-Deklaration koennen Variablen nun natuerlicher entsorgt werden

using (var repo = new Repository()) {
 //do stuff
}
// repo wird entsorgt

wird zu

using var repo = new Repository()
// do stuff
// repo wird entsorgt
subpages (0)