Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created May 7, 2013 10:47
Show Gist options
  • Save dkalamari/5531767 to your computer and use it in GitHub Desktop.
Save dkalamari/5531767 to your computer and use it in GitHub Desktop.
Shallow copy
public class Korisnik
{
public string Ime { get; set; }
public string Prezime { get; set; }
public int oib { get; set; }
public Korisnik getShallow()
{
return (Korisnik)this.MemberwiseClone();
}
}
//Korištenje: Korisnik kor2 = kor1.getShallow();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment