Table of Contents

Class DelimitedStringOptions<T>

Namespace
Cuemon
Assembly
Cuemon.Core.dll

Configuration options for DelimitedString.

public class DelimitedStringOptions<T> : IParameterObject

Type Parameters

T

The type of the object to convert.

Inheritance
Object
DelimitedStringOptions<T>
Implements

Constructors

DelimitedStringOptions()

Initializes a new instance of the DelimitedStringOptions<T> class.

public DelimitedStringOptions()

Remarks

The following table shows the initial property values for an instance of DelimitedStringOptions<T>.

PropertyInitial Value
Delimiter,
StringConvertero => o.ToString()

Properties

Delimiter

Gets or sets the delimiter specification.

public string Delimiter { get; set; }

Property Value

String

The delimiter specification.

Exceptions

System.ArgumentNullException

value cannot be null.

ArgumentException

value cannot be empty.

StringConverter

Gets or sets the function delegate that converts T to a string representation.

public Func<T, string> StringConverter { get; set; }

Property Value

Func<T, String>

The function delegate that converts T to a string representation.

Exceptions

System.ArgumentNullException

value cannot be null.