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

this() public method

Gets the thread corresponding to an id.
public this ( int threadId ) : RemoteThread
threadId int The unique identifier of the thread to get.
return RemoteThread
        public RemoteThread this[int threadId]
        {
            get
            {
                return new RemoteThread(MemorySharp, NativeThreads.First(t => t.Id == threadId));
            }
        }