Click or drag to resize

DisplayParametersHelper.IsSameDefinition Method

Determines if this object has the same definition as another object.

Namespace:  AGI.Foundation.Platforms.Advanced
Assembly:  AGI.Foundation.Platforms.Graphics (in AGI.Foundation.Platforms.Graphics.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
public bool IsSameDefinition(
	DisplayParametersHelper other
)

Parameters

other
Type: AGI.Foundation.Platforms.Advanced.DisplayParametersHelper
The other instance to compare to this one.

Return Value

Type: Boolean
true if this object has the same definition as the specified one. false if the other object is null, a different type than this one, or if this object and the specified one have different definitions.
Remarks
This method is very similar to Equals(Object) except that it explicitly considers the "definitions" of the two objects for objects that do not typically act like values. The definition of an object typically includes all of the fields of the object.
See Also