Click or drag to resize

PathSegmentListStartWith Method

Determines if this instances starts with the same segment as the one from another instance.

Namespace:  callback.ShellBoost.Core.Utilities
Assembly:  callback.CBFSShell (in callback.CBFSShell.dll) Version: 22.0.0.0
Syntax
C#
public bool StartWith(
	PathSegmentList value,
	bool orEquals,
	out PathSegmentList childPath
)

Parameters

value
Type: callback.ShellBoost.Core.UtilitiesPathSegmentList
The list to compare with this instance.
orEquals
Type: SystemBoolean
true to return true if two paths are equals; false otherwise.
childPath
Type: callback.ShellBoost.Core.UtilitiesPathSegmentList
The child path or null if both are equal or if the return value is false.

Return Value

Type: Boolean
true if this instances starts with the same segment as the one from another instance; otherwise, false.
See Also