/// <summary>
 /// Deep-copies this Resource to the specified target Resource. The target Resource's Type must
 /// match this Resource's Type.
 /// </summary>
 /// <param name="target">The target Resource to copy this Resource's data to</param>
 public void CopyTo(Resource target)
 {
     this.DeepCopyTo(target);
 }