public abstract [Type] Clone()
public override [Type] Clone()
Above, [Type] is a placeholder for the class name of the object to be copied.
The Equivalent method is a member of many classes in GeoCalc. This method takes no arguments, and copies the object which it is built off of. The new object must have the same type as the current instance, because the resulting copy is stored in the current instance.
The following example shows the use of the Clone method for the AngularUnit object, but the usage is the same for all objects.
void Clone(GeoCalc.AngularUnit au1, GeoCalc.AngularUnit au2)
{
au2 = au1.Clone();
}