mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-05-10 08:20:05 -07:00
Compare commits
2 Commits
master
...
0f38986d31
| Author | SHA1 | Date | |
|---|---|---|---|
| 0f38986d31 | |||
| 3e3d42023b |
@@ -398,3 +398,17 @@ CHEATSHEET C#
|
||||
KeyPress KeyPressEventHandler(object sender, KeyPressEventArgs e)
|
||||
|
||||
|
||||
16. Garbage Collection
|
||||
|
||||
16.1 Using statements
|
||||
//A using statement encapsulates the lifetime of an IDisposable object and auto manages memory
|
||||
|
||||
using(SomeManagedClass smc){
|
||||
|
||||
//Scope of SomeManagedClass
|
||||
|
||||
}
|
||||
|
||||
//Garbage collection happens here and the CLR disposes the object
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user