Skip to content

Convert SamplerHashtableToString

gaelcolas edited this page Jul 18, 2024 · 1 revision

Convert-SamplerHashtableToString

SYNOPSIS

Converts an Hashtable to its string representation, recursively.

SYNTAX

Convert-SamplerHashtableToString [[-Hashtable] <Hashtable>] 
 [<CommonParameters>]

DESCRIPTION

Convert an Hashtable to a string representation. For instance, this hashtable: @{a=1;b=2; c=3; d=@{dd='abcd'}} Becomes: a=1; b=2; c=3; d={dd=abcd}

EXAMPLES

EXAMPLE 1

Convert-SamplerhashtableToString -Hashtable @{a=1;b=2; c=3; d=@{dd='abcd'}}

PARAMETERS

-Hashtable

Hashtable to convert to string.

Type: Hashtable
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

This command is not specific to Sampler projects, but is named that way to avoid conflict with other modules.

RELATED LINKS

Clone this wiki locally