Binarysharp.MemoryManagement.Threading.ThreadFactory.GetThreadById C# (CSharp) Méthode

GetThreadById() public méthode

Gets a thread by its id in the remote process.
public GetThreadById ( int id ) : RemoteThread
id int The id of the thread.
Résultat RemoteThread
        public RemoteThread GetThreadById(int id)
        {
            return new RemoteThread(MemorySharp, NativeThreads.First(t => t.Id == id));
        }