BugzillaInterface.BugReport.setComments C# (CSharp) Метод

setComments() публичный Метод

public setComments ( System oldComments ) : void
oldComments System
Результат void
        public void setComments(System.Collections.Generic.List<BugzillaInterface.Comment> oldComments)
        {
            // Comments.Clear();
            Comments = new List<Comment>();
            foreach(Comment c in oldComments)
            {
                Comments.Add(c);
            }
        }