IrcShark.Chatting.Irc.Extended.ChannelUser.ChannelUser C# (CSharp) Method

ChannelUser() public method

Initializes a new instance of the ChannelUser class.
public ChannelUser ( Channel chan, string name ) : System
chan Channel The channel the user belongs to.
name string The name of the user.
return System
        public ChannelUser(Channel chan, string name)
        {
            this.channel = chan;
            this.name = name;
        }
ChannelUser