Click or drag to resize

ReflectionUtilitiesTryGetAutoAddSettersFromType Method

Check to see if a certain Type has any setters that set values in that Type.

Namespace:  DustProductions.Core
Assembly:  DustProductions.Core (in DustProductions.Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static bool TryGetAutoAddSettersFromType(
	Type typeWithPossibleSetters,
	out List<Type> relevantSetters
)

Parameters

typeWithPossibleSetters
Type: SystemType
The type of object that may or may not have associated setters.
relevantSetters
Type: System.Collections.GenericListType
A list that will be populated if there are relevant setters for the Type passed in.

Return Value

Type: Boolean
True if there is at least one setter for the type in the Dictionary, false otherwise.
See Also