'Declaration
<JetBrains.Annotations.CanBeNullAttribute()> <JetBrains.Annotations.MustUseReturnValueAttribute()> <JetBrains.Annotations.PureAttribute()> Public Shared Function FromEnumerable( _ ByVal enumerable As IEnumerable(Of String) _ ) As BrowsePath
'Usage
Dim enumerable As IEnumerable(Of String) Dim value As BrowsePath value = BrowsePath.FromEnumerable(enumerable)
[JetBrains.Annotations.CanBeNull()] [JetBrains.Annotations.MustUseReturnValue()] [JetBrains.Annotations.Pure()] public static BrowsePath FromEnumerable( IEnumerable<string> enumerable )
[JetBrains.Annotations.CanBeNull()] [JetBrains.Annotations.MustUseReturnValue()] [JetBrains.Annotations.Pure()] public: static BrowsePath^ FromEnumerable( IEnumerable<String^>^ enumerable )
Parameters
- enumerable
- Sequence of browse names, starting from the root.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
null
when the input is null
. Otherwise, returns the browse path object made from the sequence of browse names.
This method can return null
(Nothing
in Visual Basic).
This return value of this method should not be ignored.