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

CreateAndJoin() public method

Creates a thread in the remote process and blocks the calling thread until the thread terminates.
public CreateAndJoin ( IntPtr address ) : RemoteThread
address System.IntPtr /// A pointer to the application-defined function to be executed by the thread and represents /// the starting address of the thread in the remote process. ///
return RemoteThread
        public RemoteThread CreateAndJoin(IntPtr address)
        {
            // Create the thread
            var ret = Create(address);
            // Wait the end of the thread
            ret.Join();
            // Return the thread
            return ret;
        }

Same methods

ThreadFactory::CreateAndJoin ( IntPtr address, dynamic parameter ) : RemoteThread