You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When CloneOptions.UseClone is used, objects will be checked for a parameterless Clone method. If found, this will be used instead of cloning the object property by property.
If CloneOptions.UseClone and CloneOptions.UseIClonable are both specified, CloneOptions.UseIClonable will take precedence. In theory, they are the same method and an interface call is faster than a reflection call.
The text was updated successfully, but these errors were encountered:
When
CloneOptions.UseClone
is used, objects will be checked for a parameterlessClone
method. If found, this will be used instead of cloning the object property by property.If
CloneOptions.UseClone
andCloneOptions.UseIClonable
are both specified, CloneOptions.UseIClonable will take precedence. In theory, they are the same method and an interface call is faster than a reflection call.The text was updated successfully, but these errors were encountered: