CardsAgainstIRC3.Game.Card.Representation C# (CSharp) Method

Representation() public method

public Representation ( ) : string
return string
        public string Representation()
        {
            var part = string.Join("_", Parts);
            return "\x02[" + part + "]\x02";
        }

Same methods

Card::Representation ( IEnumerable cards ) : string