We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aad512f commit d6c5d8fCopy full SHA for d6c5d8f
Orm/Xtensive.Orm/Reflection/TypeHelper.cs
@@ -739,7 +739,7 @@ public static Type[] GetInterfaces(this Type type) =>
739
/// Interfaces will be ordered from the very base ones to ancestors.
740
/// </summary>
741
/// <param name="type">The type to get the interfaces of.</param>
742
- public static Type[] GetInterfacesOrderByInheritance(this Type type) =>
+ public static Type[] GetInterfacesOrderedByInheritance(this Type type) =>
743
OrderedInterfaces.GetOrAdd(type, t => t.GetInterfaces().OrderByInheritance().ToArray());
744
745
/// <summary>
0 commit comments