using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Process.NET.Memory
{
///
/// Defines types of memory manipulations.
///
public enum MemoryType
{
///
/// The memory is within the local process. Often, this is called "injected" or "Internal".
///
Local,
///
/// The memory is not within the local process. Often this is called "remote" or "external".
///
Remote
}
}