Heureka API .NET Documentation
Clone Method (Result)
Example 



Creates a copy of the result.
Syntax
'Declaration
 
Public Function Clone() As Result
'Usage
 
Dim instance As Result
Dim value As Result
 
value = instance.Clone()
public Result Clone()
public:
Result^ Clone(); 
Remarks
A semi-deep copy is made, meaning that all data structures are deep copied, but the results contained are not deep copied. However, individual results in the copy may be replaced. Result r2 = r.Clone(); object[] before = r2.Before(typeof(ForestData)); before[0] = ((ICloneable)before[0]).Clone();
Example
Result r2 = r.Clone();
object[] before = r2.Before(typeof(ForestData));
before[0] = ((ICloneable)before[0]).Clone();
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Result Class
Result Members

Send Feedback