BitSharper.PeerGroup.Start C# (CSharp) 메소드

Start() 공개 메소드

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