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
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET