using System; using System.Runtime.InteropServices; namespace System { /// Specifies the location where an environment variable is stored or retrieved in a set or get operation. /// 2 // Token: 0x02000668 RID: 1640 [ComVisible(true)] public enum EnvironmentVariableTarget { /// The environment variable is stored or retrieved from the environment block associated with the current process. // Token: 0x040018F9 RID: 6393 Process, /// The environment variable is stored or retrieved from the HKEY_CURRENT_USER\Environment key in the Windows operating system registry. // Token: 0x040018FA RID: 6394 User, /// The environment variable is stored or retrieved from the HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Manager\Environment key in the Windows operating system registry. // Token: 0x040018FB RID: 6395 Machine } }