Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

eXoCooLd/ProcessWorker

Repository files navigation

ProcessWorker

Prototype of a ProcessWorker that starts jobs in a new process and returns there return-values back to the main process

Usage for a public static method:

public class ProcessWorkerExample
{
	public void StartRemoteWork()
	{
		string result = ProcessWorker.RunAndWait(RemoteWorkJob);
	}
	
	public static string RemoteWorkJob()
	{
		return "Remote Job Done";
	}
}

License

MIT

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages