Akka.Cluster.Gossip.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
        public override string ToString()
        {
            return String.Format("Gossip(members = [{0}], overview = {1}, version = {2}",
                _members.Select(m => m.ToString()).Aggregate((a, b) => a + ", " + b), _overview, _version);
        }
    }