Esempio n. 1
0
        public string BaseToString()
        {
            var sb = new StringBuilder(BaseToStringWithNoVote());

            if (Vote != null)
            {
                sb.AppendLine();
                sb.AppendLine("[]> 发起了投票:");
                sb.Append(Vote.BaseToString());
            }
            return(sb.ToString());
        }