Finished Using IDisposable, repo at 578bebe
parent
e532d0b599
commit
5b7359abbc
@ -165,4 +165,13 @@ namespace InterfaceDemo
|
|||||||
|
|
||||||
* Naming Convention: Interface is begin by `I`. e.g. `IBook`
|
* Naming Convention: Interface is begin by `I`. e.g. `IBook`
|
||||||
* Interfaces are far more commen than abstract class
|
* Interfaces are far more commen than abstract class
|
||||||
* When class inherit from interface, methods from interface must be implemented, even if it's abstract class, and implemented methods are virtual
|
* When class inherit from interface, methods from interface must be implemented, even if it's abstract class, and implemented methods are virtual
|
||||||
|
|
||||||
|
## Writing Grades to a File & Using IDisposable
|
||||||
|
|
||||||
|
Reference:
|
||||||
|
* [Implement a Dispose method (.NET fundamentals)](https://docs.microsoft.com/en-us/dotnet/standard/garbage-collection/implementing-dispose)
|
||||||
|
* [Usage and Importance of Using in C# -> Using Statment (for garbage collection)](https://www.c-sharpcorner.com/UploadFile/manas1/usage-and-importance-of-using-in-C-Sharp472/)
|
||||||
|
|
||||||
|
* .NET has garbage collector to recycle memory. We also has some resource that want to release once used as soon as possible. .NET provide `IDisposable` interface to notify and automatically recycle resource.
|
||||||
|
* `using` statement
|
Loading…
x
Reference in New Issue
Block a user