FloatingPointDouble

FloatingPointDouble class

Encapsulates the Floating Point Double (FD) VR type. https://dicom.nema.org/medical/dicom/current/output/chtml/part05/sect_6.2.html#:~:text=FD-,Floating%20Point%20Double,-Double%20precision%20binary.

public sealed class FloatingPointDouble : ValueElement<double>

Constructors

NameDescription
FloatingPointDouble(Tag, double)Initializes a new instance of the FloatingPointDouble with the given value and tag.
FloatingPointDouble(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