I have a MemoryStream inside a method. MemoryStream is RAM.
What happens to the Memory if I don't dispose it and method finishes execution? It gets disposed because it is inside the '{}' of method??
I pass that MemoryStream as argument to another method, do I need to dispose it there?