public PrimMedia(PrimMedia other) : base() { m_MediaFaces = other.CopyArray(); }
public PrimMedia(PrimMedia other) : base() { if ((other == null) || (other.m_MediaFaces == null)) { New(0); } else { lock (this) { m_MediaFaces = other.CopyArray(); } } }