Hardly.Thread.Thread C# (CSharp) Method

Thread() public method

public Thread ( System.Action run ) : System
run System.Action
return System
        public Thread(Action run)
        {
            this.run = run;
        }