OtherFloat

OtherFloat class

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

public sealed class OtherFloat : ValueElement<float>

Constructors

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

Properties

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

Methods

NameDescription
Add(float)
AddRange(Span<float>)
ConvertData<TOutput>(Func<float, 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, float)
Remove(float)
RemoveAt(int)
Replace(IEnumerable<float>)
override ToString()
TryGetValue<TValue>(Index, out TValue)
TryGetValue<TValue>(int, out TValue)

See Also