IObjectGenerator<T>
Interface
Provides the base methods for a generic object factory.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.ScheduleView.dll
Type Parameters:
T
Syntax:
C#
public interface IObjectGenerator<T>
Derived Classes:
Methods
Creates a new instance of the specified type.
C#
T CreateNew()
T
The new instance of the specified type.
Creates a new instance of the specified type and copies the provided object properties on to the new instance.
C#
T CreateNew(T item)
T
The new instance of the specified type.