예제 #1
0
 public CommentItem(CommentItem source)
     : base(source)
 {
     _name      = source._name;
     _itemType  = source._itemType;
     _listParts = source._listParts;
 }
예제 #2
0
        public CommentItem(string name, CommentItemType itemType)
        {
            BuildExceptions.NotNullNotEmpty(name, "name");

            _name      = name;
            _itemType  = itemType;
            _listParts = new BuildList <CommentPart>();
        }