/// <summary>
 /// Loads and de-serialize and populate the extended 
 /// properties of the current answer item and cache
 /// them.
 /// </summary>
 public virtual void RestoreProperties()
 {
     this._properties = new AnswerProperties(this.AnswerId);
     if (this._properties == null)
     {
         this._properties = new AnswerProperties();
     }
 }
 /// <summary>
 /// Loads and de-serialize and populate the extended
 /// properties of the current answer item and cache
 /// them.
 /// </summary>
 public virtual void RestoreProperties()
 {
     this._properties = new AnswerProperties(this.AnswerId);
     if (this._properties == null)
     {
         this._properties = new AnswerProperties();
     }
 }