In C#, a thread:
Is an object to import from a library
Initializes as follows: Thread t = new Thread(WriteX); with WriteX() a function returning any value
Initializes as follows: Thread t = new Thread(WriteX); with WriteX() a void function
Allows asynchronous programming