DomainClassInheritanceComparer<T> Class
Class to order domain classes by their inheritance tree, so leaf classes come first.
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.Modeling.DslDefinition.DomainClassInheritanceComparer<T>
Microsoft.VisualStudio.Modeling.DslDefinition.DomainClassInheritanceComparer
Namespace: Microsoft.VisualStudio.Modeling.DslDefinition
Assembly: Microsoft.VisualStudio.Modeling.Sdk.DslDefinition.12.0 (in Microsoft.VisualStudio.Modeling.Sdk.DslDefinition.12.0.dll)
Syntax
'Declaration
Public Class DomainClassInheritanceComparer(Of T As DomainClass) _
Implements IComparer, IComparer(Of T)
public class DomainClassInheritanceComparer<T> : IComparer,
IComparer<T>
where T : DomainClass
generic<typename T>
where T : DomainClass
public ref class DomainClassInheritanceComparer : IComparer,
IComparer<T>
type DomainClassInheritanceComparer<'T when 'T : DomainClass> =
class
interface IComparer
interface IComparer<'T>
end
JScript does not support generic types or methods.
Type Parameters
- T
The DomainClassInheritanceComparer<T> type exposes the following members.
Constructors
Name | Description | |
---|---|---|
DomainClassInheritanceComparer<T> |
Top
Methods
Name | Description | |
---|---|---|
Compare(Object, Object) | Compare two Domain Classes | |
Compare(T, T) | Compare two domain classes | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Remarks
Do not use this class with a SortedList or SortedDictionary class as the fact that it returns 0 for unrelated classes means that keys will no longer be based on object identity.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.