Determines whether two paths are similar.
Per definition, paths are similar if they could yield an intersecting set of result elements.
| C# | Visual Basic | Visual C++ |
public static bool IsSimilar( RxPath a, RxPath b, out int warnCount, IDataProvider provider )
Public Shared Function IsSimilar ( _ a As RxPath, _ b As RxPath, _ <OutAttribute> ByRef warnCount As Integer, _ provider As IDataProvider _ ) As Boolean
public: static bool IsSimilar( RxPath^ a, RxPath^ b, [OutAttribute] int% warnCount, IDataProvider^ provider )
- a (RxPath)
- The first path.
- b (RxPath)
- The second path.
- warnCount ( Int32 %)
- The warn count is set to the number of significant differences both paths have (but are not a contradiction per se).
- provider (IDataProvider)
- The data provider to use to resolve variable values.
true if the specified the paths are similar; otherwise, false.
