-
-
Notifications
You must be signed in to change notification settings - Fork 0
easyextensionshelpers ReflectionHelpers
BigMakCode edited this page Aug 5, 2024
·
1 revision
Reflection helpers.
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph EasyExtensions.Helpers
EasyExtensions.Helpers.ReflectionHelpers[[ReflectionHelpers]]
end
| Returns | Name |
|---|---|
void |
CopyMatchingProperties(object source, object destination)Copy matching properties from source to destination. |
IEnumerable<Type> |
GetTypesOfInterface() |
Reflection helpers.
public static IEnumerable<Type> GetTypesOfInterface<TInterface>()
where TInterface : public static void CopyMatchingProperties(object source, object destination)| Type | Name | Description |
|---|---|---|
object |
source | Source object. |
object |
destination | Destination object. |
Copy matching properties from source to destination.
Generated with ModularDoc