IBusinessObject Iduplicate();
None.
An an IBusinessObject object that contains the duplicate business object.
The Iduplicate() method makes a clone of the business object and returns it. You must explicitly assign the return value of this method call to a declared variable of IBusinessObject type.
The following example duplicates sourceCustomer to create destCustomer.
IBusinessObject destCustomer = sourceCustomer.Iduplicate();