Binarysharp.MemoryManagement.Threading.ThreadFactory.GetThreadById C# (CSharp) Method

GetThreadById() public method

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