dotConnect for Mailchimp Documentation
Devart.Data.MailChimp Namespace / MailChimpCommand Class / Clone Method
Example

In This Topic
    Clone Method (MailChimpCommand)
    In This Topic
    Creates a new object that is a copy of the current MailChimpCommand instance.
    Creates a new object that is a copy of the current MailChimpCommand instance.
    Syntax
    'Declaration
     
    Public Shadows Function Clone() As MailChimpCommand
    public new MailChimpCommand Clone()

    Return Value

    A new MailChimpCommand object in which all property values are the same as the original.
    Remarks
    Use this method when you need to create a new MailChimpCommand object that is absolutely like existing one.
    Example
    This example shows how to clone a 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
    See Also