Beispiel #1
0
        public BaseRelocationEntry Clone()
        {
            var copy = new BaseRelocationEntry();

            CopyTo(copy);

            return(copy);
        }
Beispiel #2
0
 protected void CopyTo(BaseRelocationEntry copy)
 {
     copy._type   = _type;
     copy._offset = _offset;
 }