Binarysharp.MemoryManagement.Memory.MemoryFactory.MemoryFactory C# (CSharp) Method

MemoryFactory() private method

Initializes a new instance of the MemoryFactory class.
private MemoryFactory ( MemorySharp memorySharp ) : System
memorySharp MemorySharp The reference of the object.
return System
        internal MemoryFactory(MemorySharp memorySharp)
        {
            // Save the parameter
            MemorySharp = memorySharp;
            // Create a list containing all allocated memory
            InternalRemoteAllocations = new List<RemoteAllocation>();
        }