[]
Assigns all from another object.
public static void Assign<T>(object owner, T source, ref T dest) where T : ICloneableObject, IOwnedObject, new()
Public Shared Sub Assign(Of T As {ICloneableObject, IOwnedObject, New})(owner As Object, source As T, ByRef dest As T)
| Type | Name | Description |
|---|---|---|
| object | owner | The owner object. |
| T | source | The source object. |
| T | dest | The destination object. |
| Name | Description |
|---|---|
| T | The type of destination object. |
Assigns all from another object.
public static void Assign<T>(T source, ref T dest) where T : ICloneableObject, new()
Public Shared Sub Assign(Of T As {ICloneableObject, New})(source As T, ByRef dest As T)
| Type | Name | Description |
|---|---|---|
| T | source | The source object. |
| T | dest | The destination object. |
| Name | Description |
|---|---|
| T | The type of destination object. |