Class IEnumerableStringEx
Class containing some extension methods for System.Collections.Generic.IEnumerable<T>.
Inheritance
System.Object
IEnumerableStringEx
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Extend
Assembly:Extend.dll
Syntax
public static class IEnumerableStringEx
Methods
| Improve this Doc View SourcePathCombine(IEnumerable<String>)
Returns a path combined out of the items in the given IEnumerable.
Declaration
public static string PathCombine(this IEnumerable<string> enumerable)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.Generic.IEnumerable<T><System.String> | enumerable | The IEnumerable to act on. |
Returns
Type | Description |
---|---|
System.String | The combined path. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException | The enumerable can not be null. |