Choreoh.DanceRoutine.addComment C# (CSharp) 메소드

addComment() 공개 메소드

public addComment ( Choreoh.DanceSegment segment, String comment ) : String
segment Choreoh.DanceSegment
comment String
리턴 String
        public String addComment(DanceSegment segment, String comment)
        {
            if (comments.ContainsKey(segment)) comments.Remove(segment);
            comments.Add(segment, comment);
            return comment;
        }