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