public PrimMedia(PrimMedia other) : base()
 {
     m_MediaFaces = other.CopyArray();
 }
 public static PrimMedia FromXml(string rawXml)
 {
     PrimMedia ml = new PrimMedia();
     ml.ReadXml(rawXml);
     return ml;
 }
Esempio n. 3
0
 public PrimMedia(PrimMedia other) : base()
 {
     if ((other == null) || (other.m_MediaFaces == null))
     {
         New(0);
     }
     else
     {
         lock (this)
         {
             m_MediaFaces = other.CopyArray();
         }
     }
 }