unsafe internal ThreadExtendedInformation(ProcessExtendedInformation process, SYSTEM_THREAD_INFORMATION32 *info)
        {
            _info32 = *info;

            Process  = process;
            ThreadId = info->ClientId.Thread.ToInt32();
        }
        unsafe internal ThreadExtendedInformation(ProcessExtendedInformation process, SYSTEM_THREAD_INFORMATION64 *info)
        {
            Process = process;
            _info64 = *info;
            _is64   = true;

            ThreadId = info->ClinetId.Thread.ToInt32();
        }