base1 210525 Deep copy Vs soft copy soft copy: 참조 변수만을 copy 하는것 결국 같은 data를 가리킴 Deep copy: 새로운 객체를 만들어서 copy 하는것 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _210525_001 { class MyClass { public int MyFeild1; public int MyFeild2; public MyClass DeepCopy() // 새롭개 객체를 만들어서 자기자신을 member 변수들을 넣어준다. { MyClass newCopy = new MyClass();.. 2021. 5. 25. 이전 1 다음