BitSharper.PeerGroup.Start C# (CSharp) Method

Start() public method

Starts the background thread that makes connections.
public Start ( ) : void
return void
        public void Start()
        {
            _connectThread = new Thread(Run) {Name = "Peer group thread"};
            _running = true;
            _connectThread.Start();
        }