OtherDouble

OtherDouble class

Encapsulates the Other Double (OD) VR type. https://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#:~:text=OD-,Other%20Double,-A%20stream%20of.

public sealed class OtherDouble : ValueElement<double>

Constructors

NameDescription
OtherDouble(Tag, double)Initializes a new instance of the OtherDouble with the given value and tag.
OtherDouble(Tag, Span<double>)

Properties

NameDescription
Count { get; }
Data { get; }
Tag { get; }
override ValueRepresentation { get; }

Methods

NameDescription
Add(double)
AddRange(Span<double>)
ConvertData<TOutput>(Func<double, TOutput>)
Get(int)
Get<TValue>(Index)
Get<TValue>(int)
GetOrDefault<TValue>(Index)
GetOrDefault<TValue>(int)
GetSingleOrDefault()
GetValues()
GetValues(Range)
GetValues<TValue>()
GetValues<TValue>(Range)
Insert(int, double)
Remove(double)
RemoveAt(int)
Replace(IEnumerable<double>)
override ToString()
TryGetValue<TValue>(Index, out TValue)
TryGetValue<TValue>(int, out TValue)

See Also