fluentsharp / FluentSharp

Fluent API for the .NET Framework (used by the O2 Platform)
63 stars 18 forks source link

Process implements the IDisposable Interface : add a Close() and Dispose() methods #63

Open michaelhidalgo opened 9 years ago

michaelhidalgo commented 9 years ago

The current implementation for : https://github.com/o2platform/FluentSharp/blob/master/FluentSharp.CoreLib/O2_DotNetWrappers/Windows/Processes.cs#L137

Does not releases the memory after the execution of the code, it can be done by adding the Close() and Dispose() methods or by introducing the using statement.