ExtensionMethods.FindCommonAncestor<T> Method (T, T, Func<T, T>)

Namespace:  Microsoft.VisualStudio.PlatformUI
Assembly:  Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function FindCommonAncestor(Of T As DependencyObject) ( _
    obj1 As T, _
    obj2 As T, _
    parentEvaluator As Func(Of T, T) _
) As T
public static T FindCommonAncestor<T>(
    this T obj1,
    T obj2,
    Func<T, T> parentEvaluator
)
where T : DependencyObject
[ExtensionAttribute]
public:
generic<typename T>
where T : DependencyObject 
static T FindCommonAncestor(
    T obj1, 
    T obj2, 
    Func<T, T>^ parentEvaluator
)
static member FindCommonAncestor : 
        obj1:'T * 
        obj2:'T * 
        parentEvaluator:Func<'T, 'T> -> 'T  when 'T : DependencyObject
JScript does not support generic types or methods.

Type Parameters

  • T

Parameters

  • obj1
    Type: T
  • obj2
    Type: T
  • parentEvaluator
    Type: Func<T, T>

Return Value

Type: T

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

.NET Framework Security

See Also

Reference

ExtensionMethods Class

FindCommonAncestor Overload

Microsoft.VisualStudio.PlatformUI Namespace