Interface ICopyable<T>
A generic interface for copying objects.
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.ScheduleView.dll
Syntax
public interface ICopyable<T>
Type Parameters
T
|
Methods
Copy()
Deep copies this instance.
Declaration
T Copy()
Returns
T
A deep copy of the current object. |
CopyFrom(T)
Deep copies all properties from other
to this instance.
Declaration
void CopyFrom(T other)
Parameters
T
other
The instance to copy properties from. |