Skip to content

Latest commit

 

History

History
95 lines (59 loc) · 4.28 KB

Assorted.Utils.Text.StringStream.-ctor.md

File metadata and controls

95 lines (59 loc) · 4.28 KB

StringStream Constructor

Namespace: Assorted.Utils.Text
Assembly: Assorted.Utils (Assorted.Utils.dll) version 1.1.0.0

Initializes a new instance of StringStream class.

Overload Description
StringStream() Initializes a new instance of StringStream class with an expandable capacity using the specified encoding.
StringStream(Encoding) Initializes a new instance of StringStream class with an expandable capacity using the System.Text.Encoding.UTF8 encoding.
StringStream(string) Initializes a new a new non-resizable instance of StringStream class based on the specified string and using the System.Text.Encoding.UTF8 encoding.
StringStream(string, Encoding) Initializes a new a new non-resizable instance of StringStream class based on the specified string and using the specified encoding.

StringStream()

Initializes a new instance of StringStream class with an expandable capacity using the specified encoding.

Syntax

public StringStream()

See Also

StringStream(Encoding)

Initializes a new instance of StringStream class with an expandable capacity using the System.Text.Encoding.UTF8 encoding.

Syntax

public StringStream(Encoding encoding)

Parameters

encoding: Encoding
The character encoding to use. If a null value is passed as this parameter, the System.Text.Encoding.UTF8 encoding will be used.

See Also

StringStream(string)

Initializes a new a new non-resizable instance of StringStream class based on the specified string and using the System.Text.Encoding.UTF8 encoding.

Syntax

public StringStream(string value)

Parameters

value: string
The string from which to create this stream. Passing a null value as this parameter will create an empty stream.

See Also

StringStream(string, Encoding)

Initializes a new a new non-resizable instance of StringStream class based on the specified string and using the specified encoding.

Syntax

public StringStream(string value, Encoding encoding)

Parameters

value: string
The string from which to create this stream. Passing a null value as this parameter will create an empty stream.

encoding: Encoding
The character encoding to use. If a null value is passed as this parameter, the System.Text.Encoding.UTF8 encoding will be used.

See Also


This document is generated by DG.