Example #1
0
 object ICloneable.Clone()
 {
     var copy = new AuthorElement()
     {
         Name = this.Name,
         Direction = this.Direction,
         Email = this.Email,
         Uri = this.Uri
     };
     return copy;
 }
Example #2
0
        object ICloneable.Clone()
        {
            var copy = new AuthorElement()
            {
                Name      = this.Name,
                Direction = this.Direction,
                Email     = this.Email,
                Uri       = this.Uri
            };

            return(copy);
        }