/// <summary>
 ///Copies the data member values of the current IREntity to the specified target object
 ///</summary>
 ///<param name="target">target object (must be an instance of)</param>
 public override void CopyTo(Microsoft.Dss.Core.IDssSerializable target)
 {
     base.CopyTo(target);
     global::Microsoft.Robotics.Services.Sample.SimulatedIRobotLite.Proxy.IREntity typedTarget = ((global::Microsoft.Robotics.Services.Sample.SimulatedIRobotLite.Proxy.IREntity)(target));
     typedTarget._Distance            = this._Distance;
     typedTarget._DispersionConeAngle = this._DispersionConeAngle;
     typedTarget._Samples             = this._Samples;
     typedTarget._MaximumRange        = this._MaximumRange;
 }
 /// <summary>
 ///Clones IREntity
 ///</summary>
 ///<returns>cloned value</returns>
 public override object Clone()
 {
     global::Microsoft.Robotics.Services.Sample.SimulatedIRobotLite.Proxy.IREntity target0 = new global::Microsoft.Robotics.Services.Sample.SimulatedIRobotLite.Proxy.IREntity();
     this.CopyTo(target0);
     return(target0);
 }