Class TWithLines<T>
- Namespace
- SunamoCollectionsGeneric.Data
- Assembly
- SunamoCollectionsGeneric.dll
Container class that holds a value along with associated lines of text
public class TWithLines<T>
Type Parameters
TThe type of the value
- Inheritance
-
TWithLines<T>
- Inherited Members
- Extension Methods
Properties
Lines
Gets or sets the list of text lines associated with the value
public L<string>? Lines { get; set; }
Property Value
Value
Gets or sets the main value
public T Value { get; set; }
Property Value
- T