Пример #1
0
 /// <summary>
 /// Copy another BaseDescriptor into this one.
 /// </summary>
 /// <param name="b">Specifies the BaseDescriptor to copy.</param>
 public void Copy(BaseDescriptor b)
 {
     m_nID      = b.ID;
     m_strName  = b.Name;
     m_strOwner = b.Owner;
 }
Пример #2
0
 /// <summary>
 /// The BaseDescriptor constructor.
 /// </summary>
 /// <param name="b">Specifies another BaseDescriptor used to create this one.</param>
 public BaseDescriptor(BaseDescriptor b)
     : this(b.ID, b.Name, b.Owner)
 {
 }