ConfigurationPath.Combine Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Combine(IEnumerable<String>) |
Combines path segments into one path. |
Combine(String[]) |
Combines path segments into one path. |
Combine(IEnumerable<String>)
- Source:
- ConfigurationPath.cs
- Source:
- ConfigurationPath.cs
- Source:
- ConfigurationPath.cs
- Source:
- ConfigurationPath.cs
Combines path segments into one path.
public:
static System::String ^ Combine(System::Collections::Generic::IEnumerable<System::String ^> ^ pathSegments);
public static string Combine (System.Collections.Generic.IEnumerable<string> pathSegments);
static member Combine : seq<string> -> string
Public Shared Function Combine (pathSegments As IEnumerable(Of String)) As String
Parameters
- pathSegments
- IEnumerable<String>
The path segments to combine.
Returns
The combined path.
Applies to
Combine(String[])
- Source:
- ConfigurationPath.cs
- Source:
- ConfigurationPath.cs
- Source:
- ConfigurationPath.cs
- Source:
- ConfigurationPath.cs
Combines path segments into one path.
public:
static System::String ^ Combine(... cli::array <System::String ^> ^ pathSegments);
public static string Combine (params string[] pathSegments);
static member Combine : string[] -> string
Public Shared Function Combine (ParamArray pathSegments As String()) As String
Parameters
- pathSegments
- String[]
The path segments to combine.
Returns
The combined path.
Applies to
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.