Clone Method (SqlShimCommand)
Creates a new object that is a copy of the current
SqlShimCommand instance.
Return Value
A new
SqlShimCommand object in which all property values are the same as the original.
This example shows how to clone a
Devart.Data.MailChimp.MailChimpCommand . To make sure all the properties are inherited, one of them (CommandText) is written to the console.
public void CloneACommand()
{
MailChimpCommand mailchimpCommand = new MailChimpCommand("SELECT * FROM Folders");
MailChimpCommand mailchimpCommand2 = (MailChimpCommand)mailchimpCommand.Clone();
Console.WriteLine(mailchimpCommand2.CommandText);
}
Public Sub CloneACommand()
Dim mailchimpCommand As New MailChimpCommand("SELECT * FROM Folders")
Dim mailchimpCommand2 As MailChimpCommand = CType(mailchimpCommand.Clone(), MailChimpCommand)
Console.WriteLine(mailchimpCommand2.CommandText)
End Sub