ReflectionGetPropertiesWithChanges Method

Gets a list of properties with changes on the objects.

Definition

Namespace: Aliquo.Core
Assembly: Aliquo.Core (in Aliquo.Core.dll) Version: 5.0.9179.22651
C#
public static List<string> GetPropertiesWithChanges(
	Object objA,
	Object objB,
	string[] excludeProperties = null,
	BindingFlags flags = BindingFlags.Instance|BindingFlags.Public|BindingFlags.NonPublic
)

Parameters

objA  Object
Object to compare property values.
objB  Object
Object to compare property values.
excludeProperties  String  (Optional)
Properties to exclude.
flags  BindingFlags  (Optional)
Property search restrictions.

Return Value

ListString
List<String> with the properties with changes on the objects.

See Also