Ejemplo n.º 1
0
        public override object Clone()
        {
            NuGetContentSet clone = new NuGetContentSet();

            CopyTo(clone);
            return(clone);
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Copies all instance data of the <see cref="FileSet" /> to a given
 /// <see cref="FileSet" />.
 /// </summary>
 protected void CopyTo(NuGetContentSet clone)
 {
     base.CopyTo(clone);
 }
Ejemplo n.º 3
0
 public override object Clone()
 {
     NuGetContentSet clone = new NuGetContentSet();
     CopyTo(clone);
     return clone;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// copy constructor
 /// </summary>
 /// <param name="fs"></param>
 public NuGetContentSet(NuGetContentSet fs)
     : this()
 {
     fs.CopyTo((NuGetContentSet)this);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Copies all instance data of the <see cref="FileSet" /> to a given
 /// <see cref="FileSet" />.
 /// </summary>
 protected void CopyTo(NuGetContentSet clone)
 {
     base.CopyTo(clone);
 }
Ejemplo n.º 6
0
 /// <summary>
 /// copy constructor
 /// </summary>
 /// <param name="fs"></param>
 public NuGetContentSet(NuGetContentSet fs)
     : this()
 {
     fs.CopyTo((NuGetContentSet)this);
 }