Fork
Fork = copy of a process (called a child process). Heavyweight meaning does not share resources
Thread
partial copy of a process, lightweight, resources can be shared between threads. Peer relationship
Process
instance of a computer program executed by one to many threads
‘this’ in c# function
used for extensions. allows you pass in the instance of a class that’s calling the function by just using instance.function instead of function(instance). Like if you wanted to add a new method to the string class
c# - What does ‘void’ mean below?
public void SampleMethod()
{
// Body of the method.
}function has no return value