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. |
Initializes a new instance of StringStream
class with an expandable capacity using the specified encoding.
public StringStream()
Initializes a new instance of StringStream
class with an expandable capacity using the System.Text.Encoding.UTF8
encoding.
public StringStream(Encoding encoding)
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.
Initializes a new a new non-resizable instance of StringStream
class based on the specified string and using the System.Text.Encoding.UTF8
encoding.
public StringStream(string value)
value
: string
The string from which to create this stream. Passing a null
value as this parameter will create an empty stream.
Initializes a new a new non-resizable instance of StringStream
class based on the specified string and using the specified encoding.
public StringStream(string value, Encoding encoding)
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.
This document is generated by DG.