'Declaration Public Function Clone() As SqlShimCommand
public SqlShimCommand Clone()
Return Value
A new SqlShimCommand object in which all property values are the same as the original.
'Declaration Public Function Clone() As SqlShimCommand
public SqlShimCommand Clone()
public void CloneACommand() { ZohoBooksCommand ZohoBooksCommand = new ZohoBooksCommand("SELECT * FROM Accounts"); ZohoBooksCommand ZohoBooksCommand2 = (ZohoBooksCommand)ZohoBooksCommand.Clone(); Console.WriteLine(ZohoBooksCommand2.CommandText); }
Public Sub CloneACommand() Dim ZohoBooksCommand As New ZohoBooksCommand("SELECT * FROM Accounts") Dim ZohoBooksCommand2 As ZohoBooksCommand = CType(ZohoBooksCommand.Clone(), ZohoBooksCommand) Console.WriteLine(ZohoBooksCommand2.CommandText) End Sub
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2