Table of Contents

Class Parsing<T1, T2>

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Base class for parsing string content into two typed values.

public abstract class Parsing<T1, T2>

Type Parameters

T1

The type of the first parsed value.

T2

The type of the second parsed value.

Inheritance
Parsing<T1, T2>
Derived
Inherited Members
Extension Methods

Properties

FirstValue

Gets or sets the first parsed value.

public T1? FirstValue { get; set; }

Property Value

T1

SecondValue

Gets or sets the second parsed value.

public T2? SecondValue { get; set; }

Property Value

T2

Methods

Parse(string)

Parses the content string and populates FirstValue and SecondValue.

public abstract void Parse(string content)

Parameters

content string

The string content to parse.