IRC.Client.Client C# (CSharp) 메소드

Client() 공개 메소드

public Client ( ) : System
리턴 System
        public Client()
        {
            Channels = new Dictionary<string, Channel>(5);
            Logger = message => Debug.WriteLine(message);
            Port = 6667;
            //ServerPass = "none";
            // todo defaults for other types?
            LeaveMessage = "Bye everyone!";
        }