Skip to content

JensUngerer/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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%