BugReport.BugReportService.Connect C# (CSharp) 메소드

Connect() 개인적인 메소드

private Connect ( string serverName, int port ) : void
serverName string
port int
리턴 void
		public void Connect (string serverName, int port)
		{
			using (TcpClient socketClient = new TcpClient (serverName, port)) {
			}
		}
	}
BugReportService