示例#1
0
 public Project(ResearchSet rs = ResearchSet.Theme1,
                int pc         = 1, TimeFrame tf = TimeFrame.Long)
 {
     ResearchSet       = rs;
     ParticipantsCount = pc;
     TimeFrame         = tf;
 }
示例#2
0
文件: Project.cs 项目: nurumaik/CSlab
        public Project(ResearchSet rs = ResearchSet.Theme1,
				int pc = 1, TimeFrame tf = TimeFrame.Long)
        {
            ResearchSet = rs;
            ParticipantsCount = pc;
            TimeFrame = tf;
        }
示例#3
0
 public override string ToString()
 {
     return(new StringBuilder()
            .Append("Research set: ")
            .AppendLine(ResearchSet.ToString())
            .Append("Participants count: ")
            .AppendLine(ParticipantsCount.ToString())
            .Append("Time frame: ")
            .AppendLine(TimeFrame.ToString())
            .ToString());
     //return new StringBuilder().Append(researchSet).AppendLine()
     //                          .Append(participantsCount).AppendLine()
     //                          .Append(timeFrame).AppendLine()
     //                          .ToString();
 }