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