BicepFunction.Concat(BicepValue<String>[]) 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.
Combines multiple string values values
and returns
the concatenated string. This represents the concat
Bicep
function. To improve readability, prefer
Interpolate(BicepInterpolatedStringHandler) instead of
Concat(BicepValue<String>[]).
public static Azure.Provisioning.BicepValue<string> Concat (params Azure.Provisioning.BicepValue<string>[] values);
static member Concat : Azure.Provisioning.BicepValue<string>[] -> Azure.Provisioning.BicepValue<string>
Public Shared Function Concat (ParamArray values As BicepValue(Of String)()) As BicepValue(Of String)
Parameters
- values
- BicepValue<String>[]
Strings in sequential order for concatenation.
Returns
A string or array of concatenated values.
Remarks
See the Bicep Functions Reference for more.
Applies to
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for .NET